mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-07 07:09:15 +00:00
ref(nix): sorted into modules
This commit is contained in:
parent
c228945485
commit
7a39b3e3fd
12 changed files with 2630 additions and 217 deletions
27
nix/hosts/thinkpad/default.nix
Normal file
27
nix/hosts/thinkpad/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
pkgs,
|
||||
unstable,
|
||||
system,
|
||||
hostname,
|
||||
...
|
||||
}: {
|
||||
system.stateVersion = "23.11";
|
||||
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
|
||||
./bootloader.nix
|
||||
./keyboard-layout.nix
|
||||
./locale.nix
|
||||
./networking.nix
|
||||
./packages.nix
|
||||
./users.nix
|
||||
];
|
||||
|
||||
nix = {
|
||||
package = pkgs.nixFlakes;
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue