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,11 +145,9 @@
flake =
let
pkgsFor =
system:
import nixpkgs {
pkgs = import nixpkgs {
config.allowUnfree = true;
system = system;
system = "x86_64-linux";
overlays = [
inputs.niri.overlays.niri
inputs.rust-overlay.overlays.default
@ -166,7 +164,7 @@
specialArgs = { inherit inputs; };
modules = [
{
nixpkgs.pkgs = pkgsFor "x86_64-linux";
nixpkgs = { inherit pkgs; };
}
./hosts/ytnix
inputs.sops-nix.nixosModules.sops
@ -180,7 +178,7 @@
specialArgs = { inherit inputs; };
modules = [
{
nixpkgs.pkgs = pkgsFor "x86_64-linux";
nixpkgs = { inherit pkgs; };
disabledModules = [
"services/web-servers/garage.nix"
];
@ -196,7 +194,7 @@
specialArgs = { inherit inputs; };
modules = [
{
nixpkgs.pkgs = pkgsFor "x86_64-linux";
nixpkgs = { inherit pkgs; };
}
./hosts/titan
disko.nixosModules.disko
@ -211,7 +209,7 @@
in
{
"yt@ytnix" = lib.homeManagerConfiguration {
pkgs = pkgsFor "x86_64-linux";
inherit pkgs;
extraSpecialArgs = { inherit inputs; };
modules = [
./home/yt/ytnix.nix
@ -221,7 +219,7 @@
};
"yt@chunk" = lib.homeManagerConfiguration {
pkgs = pkgsFor "x86_64-linux";
inherit pkgs;
extraSpecialArgs = { inherit inputs; };
modules = [
./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 {
pkgs = pkgsFor "x86_64-linux";
inherit pkgs;
extraSpecialArgs = { inherit inputs; };
modules = [
./home/yt/codespace.nix

View file

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