This commit is contained in:
caem 2025-01-19 03:05:43 +01:00
parent fc03bb0b93
commit 358573b80d
Signed by: caem
GPG key ID: 69A830D03203405F
6 changed files with 34 additions and 15 deletions

View file

@ -1,6 +1,9 @@
{ config, lib, ... }:
{
/* Required to be able to allowOther on user persisted directories */
programs.fuse.userAllowOther = true;
boot.initrd.postDeviceCommands = lib.mkAfter ''
mkdir /btrfs_tmp
mount "${config.fileSystems."/".device}" /btrfs_tmp

View file

@ -29,4 +29,6 @@
users.root.hashedPassword = "!";
mutableUsers = false;
};
sops.age.keyFile = "/nix/config/secrets/keys.txt";
}

View file

@ -24,5 +24,14 @@
gnome-text-editor
gnome-tour
gnome-bluetooth
gnome-music
gnome-maps
gnome-contacts
gnome-calendar
gnome-connections
];
environment.systemPackages = with pkgs; [
ghostty
];
}