flake #7
1 changed files with 11 additions and 4 deletions
15
flake.nix
15
flake.nix
|
|
@ -11,6 +11,7 @@
|
|||
outputs = inputs: {
|
||||
nixosConfigurations = let
|
||||
workstation = {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./workstation
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
|
|
@ -19,7 +20,6 @@
|
|||
};
|
||||
in {
|
||||
loki = inputs.nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = workstation.modules ++ [
|
||||
{
|
||||
networking.hostName = "loki";
|
||||
|
|
@ -29,7 +29,6 @@
|
|||
];
|
||||
};
|
||||
smaug = inputs.nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = workstation.modules ++ [
|
||||
{
|
||||
networking.hostName = "smaug";
|
||||
|
|
@ -39,8 +38,17 @@
|
|||
./hosts/smaug/hardware-configuration.nix
|
||||
];
|
||||
};
|
||||
dragon = inputs.nixpkgs.lib.nixosSystem {
|
||||
modules = workstation.modules ++ [
|
||||
{
|
||||
networking.hostName = "dragon";
|
||||
}
|
||||
inputs.nixos-hardware.nixosModules. google-pixelbook
|
||||
./wm/sway
|
||||
./hosts/dragon/hardware-configuration.nix
|
||||
];
|
||||
};
|
||||
eve = inputs.nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = workstation.modules ++ [
|
||||
{
|
||||
networking.hostName = "eve";
|
||||
|
|
@ -51,7 +59,6 @@
|
|||
];
|
||||
};
|
||||
vm2 = inputs.nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = workstation.modules ++ [
|
||||
{
|
||||
services.getty.autologinUser = "don";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue