Restructure NixOS host configuration files

This commit is contained in:
Oliver Davies 2025-01-04 17:51:00 +00:00
parent 9ea5655669
commit f92ad2b5ab
10 changed files with 70 additions and 114 deletions

View file

@ -8,8 +8,21 @@
{
imports = [
./hardware-configuration.nix
../common
../../users/opdavies
];
features = {
desktop = {
autorandr.enable = true;
gaming.enable = true;
i3.enable = true;
peek.enable = true;
};
};
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
boot = {

View file

@ -1,17 +0,0 @@
{
imports = [
../common
../../users/opdavies
./configuration.nix
];
features = {
desktop = {
autorandr.enable = true;
gaming.enable = true;
i3.enable = true;
peek.enable = true;
};
};
}