test
This commit is contained in:
parent
4262282b69
commit
20b02047f6
4 changed files with 32 additions and 46 deletions
33
flake.nix
33
flake.nix
|
@ -22,7 +22,6 @@
|
|||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||
|
||||
# Encrypted secrets in Nix configuration files
|
||||
# https://github.com/Mic92/sops-nix
|
||||
sops-nix.url = "github:Mic92/sops-nix";
|
||||
};
|
||||
|
||||
|
@ -58,8 +57,8 @@
|
|||
};
|
||||
modules = [
|
||||
# Configuration Imports
|
||||
./configuration.nix { inherit pkgs hostname config; }# Common NixOS Configuration
|
||||
./hosts/${hostname}/flake.nix { inherit pkgs hostname config; }# Hardware-specific Configuration
|
||||
./configuration.nix # Common NixOS Configuration
|
||||
./hosts/${hostname} # Hardware-specific Configuration
|
||||
|
||||
# Flake Imports
|
||||
sops-nix.nixosModules.sops # Handle secrets
|
||||
|
@ -69,18 +68,20 @@
|
|||
|
||||
# Home Manager settings
|
||||
home-manager.nixosModules.home-manager {
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.albert.imports = [
|
||||
({ config, ... }: import ./users/albert/home.nix {
|
||||
inherit config pkgs hostname;
|
||||
})
|
||||
];
|
||||
home-manager.users.root.imports = [
|
||||
({ config, ... }: import ./users/root/home.nix {
|
||||
inherit config pkgs hostname;
|
||||
})
|
||||
];
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
users.albert.imports = [
|
||||
({ config, ... }: import ./users/albert/home.nix {
|
||||
inherit config pkgs hostname;
|
||||
})
|
||||
];
|
||||
users.root.imports = [
|
||||
({ config, ... }: import ./users/root/home.nix {
|
||||
inherit config pkgs hostname;
|
||||
})
|
||||
];
|
||||
}; # home-manager
|
||||
nixpkgs.overlays = [
|
||||
nur.overlay
|
||||
];
|
||||
|
@ -88,5 +89,5 @@
|
|||
]; # modules
|
||||
}; # lib.nixosSystem - ${hostname}
|
||||
}; # nixosConfiguration
|
||||
};
|
||||
}; # in
|
||||
}
|
||||
|
|
7
hosts/nixos-laptop/default.nix
Normal file
7
hosts/nixos-laptop/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ imports, ... }: {
|
||||
imports = [
|
||||
imports.nixos-hardware.nixosModules.lenovo-thinkpad-p1
|
||||
./home-manager
|
||||
./nixos
|
||||
];
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
{
|
||||
# INFORMATION
|
||||
# When building for a system, remember to change the hostname variable below
|
||||
description = "nixos-laptop flake";
|
||||
|
||||
inputs = {
|
||||
# Hardware support
|
||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||
};
|
||||
|
||||
outputs = { hostname, nixos-hardware, ... }@inputs: {
|
||||
# NixOS Configuration files:
|
||||
nixosConfigurations = {
|
||||
# Declare a generic configuration using the $hostname variable:
|
||||
"nixos-laptop" = unstable-nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
specialArgs = {
|
||||
inherit hostname;
|
||||
};
|
||||
modules = [
|
||||
# Configuration Imports
|
||||
./nixos/configuration.nix
|
||||
# Flake Imports
|
||||
nixos-hardware.nixosModules.lenovo-thinkpad-p1
|
||||
]; # modules
|
||||
}; # lib.nixosSystem - "nixos-laptop"
|
||||
}; # nixosConfiguration
|
||||
}; # outputs
|
||||
} # flake
|
7
hosts/nixos-laptop/nixos/default.nix
Normal file
7
hosts/nixos-laptop/nixos/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ config, pkgs, hostname, ... }: {
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./configuration.nix
|
||||
./networking.nix
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue