Compare commits

...

3 commits

Author SHA1 Message Date
willifan
4f76fc71c8 added initial password for willifan 2025-05-16 23:03:32 +02:00
willifan
dc559c377b added Lenni encryption key 2025-05-15 23:15:41 +02:00
willifan
a816f0d204 update iso flake 2025-05-15 22:47:07 +02:00
5 changed files with 14 additions and 31 deletions

View file

@ -24,6 +24,8 @@
content = { content = {
type = "luks"; type = "luks";
name = "cryptroot"; name = "cryptroot";
settings.allowDiscards = true;
passwordFile = "/tmp/secret.key";
content = { content = {
type = "btrfs"; type = "btrfs";
extraArgs = [ "-f" ]; extraArgs = [ "-f" ];

View file

@ -8,38 +8,17 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" ]; boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/e09e7d80-9d85-49e6-8b0e-1f31aea83840";
fsType = "btrfs";
options = [ "subvol=@" ];
};
boot.initrd.luks.devices."luks-a2f76baf-2f27-42a4-ae48-1963c566a9ab".device = "/dev/disk/by-uuid/a2f76baf-2f27-42a4-ae48-1963c566a9ab";
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/2A99-D7CC";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
fileSystems."/mnt/nfs" =
{ device = "/nix/store/8zm9gh07p3rx8b3vqiwa1qb7zsml17sk-auto.nfs";
fsType = "autofs";
};
swapDevices = [ ];
# 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
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true; networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp195s0f3u1c2.useDHCP = lib.mkDefault true; # networking.interfaces.enp195s0f4u1c2.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true; # networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";

13
iso/flake.lock generated
View file

@ -2,17 +2,18 @@
"nodes": { "nodes": {
"nixos": { "nixos": {
"locked": { "locked": {
"lastModified": 1717179513, "lastModified": 1747209494,
"narHash": "sha256-vboIEwIQojofItm2xGCdZCzW96U85l9nDW3ifMuAIdM=", "narHash": "sha256-fLise+ys+bpyjuUUkbwqo5W/UyIELvRz9lPBPoB0fbM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "63dacb46bf939521bdc93981b4cbb7ecb58427a0", "rev": "5d736263df906c5da72ab0f372427814de2f52f8",
"type": "github" "type": "github"
}, },
"original": { "original": {
"id": "nixpkgs", "owner": "NixOS",
"ref": "24.05", "ref": "nixos-24.11",
"type": "indirect" "repo": "nixpkgs",
"type": "github"
} }
}, },
"root": { "root": {

View file

@ -1,7 +1,7 @@
{ {
description = "Minimal NixOS installation media"; description = "Minimal NixOS installation media";
inputs.nixos.url = "nixpkgs/24.05"; inputs.nixos.url = "github:NixOS/nixpkgs/nixos-24.11";
outputs = { self, nixos }: { outputs = { self, nixos }: {
nixosConfigurations = { nixosConfigurations = {

View file

@ -4,6 +4,7 @@
isNormalUser = true; isNormalUser = true;
linger = true; linger = true;
description = "willifan"; description = "willifan";
initialPassword = "temp";
extraGroups = [ "networkmanager" "wheel" "video" ]; extraGroups = [ "networkmanager" "wheel" "video" ];
shell = pkgs.bash; shell = pkgs.bash;
}; };