summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 679d58c..55f25a5 100644
--- a/flake.nix
+++ b/flake.nix
@@ -19,6 +19,12 @@
inputs.nixpkgs.follows = "nixpkgs";
};
+ #for device formatting
+ disko = {
+ url = "github:nix-community/disko/latest";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
+
# modern window compositor
hyprland = {
url = "github:hyprwm/Hyprland";
@@ -223,6 +229,12 @@
home-manager.nixosModules.home-manager { home-manager.users.defin = import ./home-manager/default.nix; }
];
};
+ biski = lib.nixosSystem { # another networking server, physical instead of cloud
+ modules = minimalConfigSettings ++ [ ./machines/biski
+ disko.nixosModules.disko
+ home-manager.nixosModules.home-manager { home-manager.users.defin = import ./home-manager/default.nix; }
+ ];
+ };
picast = lib.nixosSystem { # anger at chromecast
modules = minimalConfigSettings ++ [ ./machines/picast
home-manager.nixosModules.home-manager { home-manager.users.defin = import ./home-manager/default.nix; }