aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <59291+fcuny@users.noreply.github.com>2025-02-07 08:22:48 -0800
committerFranck Cuny <59291+fcuny@users.noreply.github.com>2025-02-07 08:22:48 -0800
commite7d522e1bbacf709f704b3591f9b5dd8bcbd0606 (patch)
treeebe8c44fabd06ec3c8c9f53f21102b962246b9b6
parentinstall and configure wezterm (diff)
downloadinfra-e7d522e1bbacf709f704b3591f9b5dd8bcbd0606.tar.gz
remove configuration for old work laptop
-rw-r--r--flake.nix13
-rw-r--r--nix/machines/hq-c02fk3q7md6t/default.nix9
2 files changed, 1 insertions, 21 deletions
diff --git a/flake.nix b/flake.nix
index 0ed623b..d404578 100644
--- a/flake.nix
+++ b/flake.nix
@@ -30,7 +30,6 @@
url = "github:numtide/devshell";
inputs.nixpkgs.follows = "nixpkgs";
};
-
};
# Output config, or config for NixOS system
@@ -43,7 +42,6 @@
pre-commit-hooks,
devshell,
treefmt-nix,
-
...
}@inputs:
flake-utils.lib.eachDefaultSystem (
@@ -86,9 +84,7 @@
devShells.default = pkgs.devshell.mkShell {
packages = with pkgs; [
just
-
treefmt
-
];
devshell.startup.pre-commit.text = self.checks.${system}.pre-commit-check.shellHook;
env = [
@@ -127,14 +123,7 @@
darwin = true;
};
- # my work MacBook Pro
- darwinConfigurations.hq-c02fk3q7md6t = mkSystem "hq-c02fk3q7md6t" {
- system = "x86_64-darwin";
- user = "fcuny";
- darwin = true;
- };
-
- # new work laptop
+ # work laptop
darwinConfigurations.hq-kwny2vh41p = mkSystem "hq-kwny2vh41p" {
system = "aarch64-darwin";
user = "fcuny";
diff --git a/nix/machines/hq-c02fk3q7md6t/default.nix b/nix/machines/hq-c02fk3q7md6t/default.nix
deleted file mode 100644
index 5910d09..0000000
--- a/nix/machines/hq-c02fk3q7md6t/default.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ pkgs, ... }:
-{
- imports = [ ../darwin-shared.nix ];
-
- system.stateVersion = 5;
-
- programs.fish.enable = true;
- environment.shells = [ pkgs.fish ];
-}