❄️ Dotfiles for our NixOS system configuration.

refactor: make ragenix available for nix-darwin as well

Chloe 8de456fb a198d9a2

Changed files
+9 -8
modules
+7 -1
modules/base/default.nix
···
{
imports = [
../shared
-
+
./nix.nix
./packages.nix
./zsh.nix
+
];
+
+
age.identityPaths = [
+
"/home/chloe/.ssh/id_ed25519.age"
+
"/home/chloe/.ssh/id_ed25519.auth"
+
"/home/chloe/.ssh/id_ed25519.sign"
];
}
+1
modules/base/packages.nix
···
jq
nixfmt
just
+
ragenix
];
}
+1
modules/darwin/extras.nix
···
{
imports = [
inputs.home-manager.darwinModules.home-manager
+
inputs.ragenix.darwinModules.default
];
}
-6
modules/nixos/extras.nix
···
inputs.ragenix.nixosModules.default
inputs.tangled.nixosModules.knot
];
-
-
age.identityPaths = [
-
"/home/chloe/.ssh/id_ed25519.age"
-
"/home/chloe/.ssh/id_ed25519.auth"
-
"/home/chloe/.ssh/id_ed25519.sign"
-
];
}
-1
modules/nixos/packages.nix
···
{
environment.systemPackages = with pkgs; [
gparted
-
ragenix
];
}