Compare commits

..

No commits in common. "e2afd11cc4d182012708827b4bea49870c1715b7" and "f5278e12552647870e8f200ae09759f8477634ef" have entirely different histories.

3 changed files with 0 additions and 68 deletions

View file

@ -269,10 +269,7 @@
./modules/linux/nixos ./modules/linux/nixos
# Still no specific modules here # Still no specific modules here
# ./modules/cross-platform/nixos # ./modules/cross-platform/nixos
# Use agenix for secrets
agenix.nixosModules.default agenix.nixosModules.default
# Use disko for creating filesystem
disko.nixosModules.disko
# Setup home manager for my user # Setup home manager for my user
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {

View file

@ -7,7 +7,6 @@
imports = [ imports = [
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
./disk-config.nix
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
]; ];

View file

@ -1,64 +0,0 @@
{
disko.devices = {
disk = {
main = {
type = "disk";
device = "/dev/nvme0n1";
content = {
type = "gpt";
partitions = {
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = ["umask=0077"];
};
};
luks = {
size = "100%";
content = {
type = "luks";
name = "crypt";
passwordFile = "/tmp/secret.key"; # Interactive
settings = {
allowDiscards = true;
keyFile = "/tmp/secret.key";
};
content = {
type = "btrfs";
extraArgs = ["-f"];
subvolumes = {
"@" = {
mountpoint = "/";
mountOptions = [
"compress=zstd"
"noatime"
];
};
"@home" = {
mountpoint = "/home";
mountOptions = [
"compress=zstd"
"noatime"
];
};
"@nix" = {
mountpoint = "/nix";
mountOptions = [
"compress=zstd"
"noatime"
];
};
};
};
};
};
};
};
};
};
};
}