made hosts/main.nix so that i can also use it on the hpm-laptop.nix...
This commit is contained in:
@@ -259,7 +259,7 @@
|
|||||||
function nixre(){
|
function nixre(){
|
||||||
if [ "$1" == "boot" ]
|
if [ "$1" == "boot" ]
|
||||||
then
|
then
|
||||||
nix build ~/work/config#nixosConfigurations.c2vi-main.config.system.build.toplevel --impure ''${@:2}
|
nix build github:c2vi/nixos#nixosConfigurations.c2vi-main.config.system.build.toplevel --impure ''${@:2}
|
||||||
sudo ./result/bin/switch-to-configuration boot
|
sudo ./result/bin/switch-to-configuration boot
|
||||||
rm ./result
|
rm ./result
|
||||||
else
|
else
|
||||||
|
|||||||
11
flake.nix
11
flake.nix
@@ -43,6 +43,17 @@
|
|||||||
specialArgs = { inherit inputs confDir workDir secretsDir persistentDir self; };
|
specialArgs = { inherit inputs confDir workDir secretsDir persistentDir self; };
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/main.nix
|
./hosts/main.nix
|
||||||
|
./hardware/my-hp-laptop.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
"c2vi-hpm" = nixpkgs.lib.nixosSystem {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
|
||||||
|
specialArgs = { inherit inputs confDir workDir secretsDir persistentDir self; };
|
||||||
|
modules = [
|
||||||
|
./hosts/main.nix
|
||||||
|
./hardware/hpm-laptop.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -23,6 +23,13 @@
|
|||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/tmp" = {
|
||||||
|
fsType = "tmpfs";
|
||||||
|
device = "tmpfs";
|
||||||
|
options = [ "nosuid" "nodev" "relatime" "size=14G" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
swapDevices = [
|
swapDevices = [
|
||||||
{ device = "/dev/disk/by-uuid/418bf0d8-e548-45d5-802a-53de72707ebc"; }
|
{ device = "/dev/disk/by-uuid/418bf0d8-e548-45d5-802a-53de72707ebc"; }
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -4,22 +4,56 @@
|
|||||||
{ config, lib, pkgs, modulesPath, ... }:
|
{ config, lib, pkgs, modulesPath, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Setup keyfile
|
||||||
|
boot.initrd.secrets = {
|
||||||
|
"/crypto_keyfile.bin" = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/home/me/work" = {
|
||||||
|
#label = "work";
|
||||||
|
device = "/dev/disk/by-uuid/fd3c6393-b6fd-4065-baf9-5690eb6ebbed";
|
||||||
|
fsType = "btrfs";
|
||||||
|
neededForBoot = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
# Use the GRUB 2 boot loader.
|
||||||
|
boot.loader.grub = {
|
||||||
|
enable = true;
|
||||||
|
version = 2;
|
||||||
|
device = "nodev";
|
||||||
|
efiSupport = true;
|
||||||
|
extraConfig = ''
|
||||||
|
set timeout=1
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
boot.initrd.luks.devices = {
|
||||||
|
root = {
|
||||||
|
#name = "root";
|
||||||
|
device = "/dev/disk/by-uuid/142d2d21-2998-4eb7-9853-ab6554ba061f";
|
||||||
|
preLVM = true;
|
||||||
|
allowDiscards = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "uas" "sd_mod" "sdhci_pci" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "uas" "sd_mod" "sdhci_pci" ];
|
||||||
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{ device = "/dev/disk/by-uuid/356c7b23-71ab-4a01-b700-adbb672bec3e";
|
device = "/dev/disk/by-uuid/356c7b23-71ab-4a01-b700-adbb672bec3e";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{ device = "/dev/disk/by-uuid/2588-2509";
|
device = "/dev/disk/by-uuid/2588-2509";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -17,48 +17,13 @@
|
|||||||
imports = [
|
imports = [
|
||||||
../mods/battery_monitor.nix
|
../mods/battery_monitor.nix
|
||||||
../mods/my-nixpkgs-overlay.nix
|
../mods/my-nixpkgs-overlay.nix
|
||||||
../hardware/my-hp-laptop.nix
|
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
|
|
||||||
../users/me/home.nix
|
../users/me/home.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
#home-manager.users.me = import ../users/me/home.nix;
|
#home-manager.users.me = import ../users/me/home.nix;
|
||||||
|
|
||||||
# Setup keyfile
|
|
||||||
boot.initrd.secrets = {
|
|
||||||
"/crypto_keyfile.bin" = null;
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/home/me/work" = {
|
|
||||||
#label = "work";
|
|
||||||
device = "/dev/disk/by-uuid/fd3c6393-b6fd-4065-baf9-5690eb6ebbed";
|
|
||||||
fsType = "btrfs";
|
|
||||||
neededForBoot = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
# Use the GRUB 2 boot loader.
|
|
||||||
boot.loader.grub = {
|
|
||||||
enable = true;
|
|
||||||
version = 2;
|
|
||||||
device = "nodev";
|
|
||||||
efiSupport = true;
|
|
||||||
extraConfig = ''
|
|
||||||
set timeout=1
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
|
||||||
|
|
||||||
boot.initrd.luks.devices = {
|
|
||||||
root = {
|
|
||||||
#name = "root";
|
|
||||||
device = "/dev/disk/by-uuid/142d2d21-2998-4eb7-9853-ab6554ba061f";
|
|
||||||
preLVM = true;
|
|
||||||
allowDiscards = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
############################# MISC #############################
|
############################# MISC #############################
|
||||||
# misc
|
# misc
|
||||||
|
|
||||||
@@ -67,13 +32,6 @@
|
|||||||
"electron-24.8.6"
|
"electron-24.8.6"
|
||||||
];
|
];
|
||||||
|
|
||||||
fileSystems."/tmp" = {
|
|
||||||
fsType = "tmpfs";
|
|
||||||
device = "tmpfs";
|
|
||||||
options = [ "nosuid" "nodev" "relatime" "size=14G" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
security.polkit.enable = true;
|
security.polkit.enable = true;
|
||||||
networking.firewall.enable = true;
|
networking.firewall.enable = true;
|
||||||
networking.firewall.allowPing = true;
|
networking.firewall.allowPing = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user