Refactor the whole configuration #1

Merged
caem merged 354 commits from refactor into master 2025-02-01 14:05:16 +01:00
4 changed files with 7 additions and 2 deletions
Showing only changes of commit 7b40e3bf9e - Show all commits

View file

@ -31,6 +31,7 @@
type = "btrfs";
extraArgs = [ "-f" "-L nixos" ];
subvolumes = {
/* Do not rename the root partition as it'll break impermanence */
"/root" = {
mountpoint = "/";
mountOptions = [

View file

@ -27,7 +27,8 @@
type = "btrfs";
extraArgs = [ "-f" "-L nixos" ];
subvolumes = {
"/rootfs" = {
/* Do not rename the root partition as it'll break impermanence */
"/root" = {
mountpoint = "/";
mountOptions = [
"noatime"

View file

@ -36,7 +36,7 @@
"documents"
"download"
"music"
"pictures"
"images"
"videos"
"programming"
];

View file

@ -8,6 +8,9 @@
trusted-users = [ "@wheel" ];
allowed-users = [ "@wheel" ];
};
extraOptions = ''
experimental-features = nix-command flakes
'';
};
nixpkgs = {