forked from emily/nixfiles
fixes
This commit is contained in:
parent
33f7ef689c
commit
d8b97ed1ca
4 changed files with 20 additions and 19 deletions
|
@ -2,6 +2,7 @@
|
|||
imports = [
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
(modulesPath + "/profiles/qemu-guest.nix")
|
||||
./config/common/users
|
||||
];
|
||||
|
||||
boot.loader = {
|
||||
|
@ -11,7 +12,7 @@
|
|||
|
||||
services.openssh.enable = true;
|
||||
|
||||
environment.systemPackages = map lib.lowPrio [
|
||||
environment.systemPackages = [
|
||||
pkgs.curl
|
||||
pkgs.gitMinimal
|
||||
];
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
../../common
|
||||
../../profiles/graphical
|
||||
./hardware-configuration.nix
|
||||
./disko.nix
|
||||
];
|
||||
|
||||
boot.extraModprobeConfig = ''
|
||||
|
@ -25,7 +26,7 @@
|
|||
};
|
||||
|
||||
deployment = {
|
||||
targetHost = "192.168.122.159";
|
||||
targetHost = "192.168.122.152";
|
||||
targetUser = "emily";
|
||||
};
|
||||
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
name = "nixos";
|
||||
type = "luks";
|
||||
settings.allowDiscards = true;
|
||||
settings.keyFile = "/tmp/disk.key";
|
||||
content = {
|
||||
type = "btrfs";
|
||||
extraArgs = [ "-f" ];
|
||||
|
|
|
@ -10,22 +10,22 @@
|
|||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/92cdb49a-4f15-4880-bf25-2ff1de20119c";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=nixos" ];
|
||||
};
|
||||
|
||||
fileSystems."/home" =
|
||||
{ device = "/dev/disk/by-uuid/92cdb49a-4f15-4880-bf25-2ff1de20119c";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=home" ];
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/DB0D-757F";
|
||||
fsType = "vfat";
|
||||
};
|
||||
# fileSystems."/" =
|
||||
# { device = "/dev/disk/by-uuid/92cdb49a-4f15-4880-bf25-2ff1de20119c";
|
||||
# fsType = "btrfs";
|
||||
# options = [ "subvol=nixos" ];
|
||||
# };
|
||||
#
|
||||
# fileSystems."/home" =
|
||||
# { device = "/dev/disk/by-uuid/92cdb49a-4f15-4880-bf25-2ff1de20119c";
|
||||
# fsType = "btrfs";
|
||||
# options = [ "subvol=home" ];
|
||||
# };
|
||||
#
|
||||
# fileSystems."/boot" =
|
||||
# { device = "/dev/disk/by-uuid/DB0D-757F";
|
||||
# fsType = "vfat";
|
||||
# };
|
||||
|
||||
swapDevices = [ ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue