okay screw it ext4 nothing fancy

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-12-19 22:37:57 -06:00
parent 0bbcd06c81
commit 63524654b6
2 changed files with 15 additions and 6 deletions

View file

@ -9,7 +9,7 @@
ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim"; ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim";
impermanence.url = "github:nix-community/impermanence"; # impermanence.url = "github:nix-community/impermanence";
}; };
outputs = outputs =
@ -35,7 +35,7 @@
inherit inputs; inherit inputs;
}; };
modules = [ modules = [
inputs.impermanence.nixosModules.impermanence # inputs.impermanence.nixosModules.impermanence
inputs.home-manager.nixosModules.default inputs.home-manager.nixosModules.default
# TODO # TODO
@ -52,7 +52,7 @@
( (
{ lib, ... }: { lib, ... }:
{ {
boot.loader.grub.device = lib.mkForce "/dev/disk/by-uuid/ca5d2b4d-8964-46c8-99cd-822ac62ac951"; boot.loader.grub.device = lib.mkForce "/dev/disk/by-uuid/e8d53d2d-bb73-41d7-bc64-93af7d3a5e7b";
} }
) )
inputs.common.nixosModules.hardening inputs.common.nixosModules.hardening
@ -75,9 +75,9 @@
# ) # )
./hardware-configuration.nix ./hardware-configuration.nix
./hardware-mounts.nix # ./hardware-mounts.nix
./impermanence.nix # ./impermanence.nix
./impermanence-tools.nix # ./impermanence-tools.nix
( (
{ {
config, config,

View file

@ -26,6 +26,15 @@
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/e8d53d2d-bb73-41d7-bc64-93af7d3a5e7b";
fsType = "ext4";
};
swapDevices = [
{ device = "/dev/disk/by-uuid/f043c171-5d20-4c6c-bc82-6e72139d7cb1"; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction # still possible to use this option, but it's recommended to use it in conjunction