Compare commits

...

2 Commits

Author SHA1 Message Date
Alexander Tomokhov 7329e8eb77 add hardware-configuration.nix 2023-06-28 09:06:29 +04:00
Alexander Tomokhov fc04f570b5 add default.nix symlink to configuration.nix 2023-06-28 09:01:28 +04:00
3 changed files with 9 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,4 +1,3 @@
userdata/userdata.json
userdata/tokens.json
hardware-configuration.nix
networking.nix
networking.nix

1
default.nix Symbolic link
View File

@ -0,0 +1 @@
configuration.nix

View File

@ -0,0 +1,7 @@
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub.device = "/dev/sda";
boot.initrd.kernelModules = [ "nvme" ];
fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
}