Compare commits
No commits in common. "e602d13a63f790f97010e2b9996f132cab2db827" and "f10401c1870316ee91b215f284235cd6aa2ed594" have entirely different histories.
e602d13a63
...
f10401c187
2 changed files with 15 additions and 26 deletions
39
flake.nix
39
flake.nix
|
@ -145,16 +145,14 @@
|
|||
|
||||
flake =
|
||||
let
|
||||
pkgsFor =
|
||||
system:
|
||||
import nixpkgs {
|
||||
config.allowUnfree = true;
|
||||
system = system;
|
||||
overlays = [
|
||||
inputs.niri.overlays.niri
|
||||
inputs.rust-overlay.overlays.default
|
||||
] ++ import ./overlay;
|
||||
};
|
||||
pkgs = import nixpkgs {
|
||||
config.allowUnfree = true;
|
||||
system = "x86_64-linux";
|
||||
overlays = [
|
||||
inputs.niri.overlays.niri
|
||||
inputs.rust-overlay.overlays.default
|
||||
] ++ import ./overlay;
|
||||
};
|
||||
in
|
||||
{
|
||||
nixosConfigurations =
|
||||
|
@ -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
|
||||
|
|
|
@ -16,6 +16,6 @@
|
|||
systemd.user.startServices = "sd-switch";
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
||||
attic-server
|
||||
];
|
||||
}
|
Loading…
Add table
Reference in a new issue