Compare commits

..

No commits in common. "e602d13a63f790f97010e2b9996f132cab2db827" and "f10401c1870316ee91b215f284235cd6aa2ed594" have entirely different histories.

2 changed files with 15 additions and 26 deletions

View file

@ -145,16 +145,14 @@
flake = flake =
let let
pkgsFor = pkgs = import nixpkgs {
system: config.allowUnfree = true;
import nixpkgs { system = "x86_64-linux";
config.allowUnfree = true; overlays = [
system = system; inputs.niri.overlays.niri
overlays = [ inputs.rust-overlay.overlays.default
inputs.niri.overlays.niri ] ++ import ./overlay;
inputs.rust-overlay.overlays.default };
] ++ import ./overlay;
};
in in
{ {
nixosConfigurations = nixosConfigurations =
@ -166,7 +164,7 @@
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
{ {
nixpkgs.pkgs = pkgsFor "x86_64-linux"; nixpkgs = { inherit pkgs; };
} }
./hosts/ytnix ./hosts/ytnix
inputs.sops-nix.nixosModules.sops inputs.sops-nix.nixosModules.sops
@ -180,7 +178,7 @@
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
{ {
nixpkgs.pkgs = pkgsFor "x86_64-linux"; nixpkgs = { inherit pkgs; };
disabledModules = [ disabledModules = [
"services/web-servers/garage.nix" "services/web-servers/garage.nix"
]; ];
@ -196,7 +194,7 @@
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
{ {
nixpkgs.pkgs = pkgsFor "x86_64-linux"; nixpkgs = { inherit pkgs; };
} }
./hosts/titan ./hosts/titan
disko.nixosModules.disko disko.nixosModules.disko
@ -211,7 +209,7 @@
in in
{ {
"yt@ytnix" = lib.homeManagerConfiguration { "yt@ytnix" = lib.homeManagerConfiguration {
pkgs = pkgsFor "x86_64-linux"; inherit pkgs;
extraSpecialArgs = { inherit inputs; }; extraSpecialArgs = { inherit inputs; };
modules = [ modules = [
./home/yt/ytnix.nix ./home/yt/ytnix.nix
@ -221,7 +219,7 @@
}; };
"yt@chunk" = lib.homeManagerConfiguration { "yt@chunk" = lib.homeManagerConfiguration {
pkgs = pkgsFor "x86_64-linux"; inherit pkgs;
extraSpecialArgs = { inherit inputs; }; extraSpecialArgs = { inherit inputs; };
modules = [ modules = [
./home/yt/chunk.nix ./home/yt/chunk.nix
@ -229,17 +227,8 @@
]; ];
}; };
"yt@raspberrypi" = lib.homeManagerConfiguration {
pkgs = pkgsFor "aarch64-linux";
extraSpecialArgs = { inherit inputs; };
modules = [
./home/yt/raspberrypi.nix
inputs.nixvim.homeManagerModules.nixvim
];
};
"codespace@codespace" = lib.homeManagerConfiguration { "codespace@codespace" = lib.homeManagerConfiguration {
pkgs = pkgsFor "x86_64-linux"; inherit pkgs;
extraSpecialArgs = { inherit inputs; }; extraSpecialArgs = { inherit inputs; };
modules = [ modules = [
./home/yt/codespace.nix ./home/yt/codespace.nix

View file

@ -16,6 +16,6 @@
systemd.user.startServices = "sd-switch"; systemd.user.startServices = "sd-switch";
home.packages = with pkgs; [ home.packages = with pkgs; [
attic-server
]; ];
} }