current_state
Christian Ott 2 years ago
parent 015da00d7d
commit 8de90abbfa
  1. 6
      configuration.nix

@ -106,13 +106,17 @@
# Define a user account. Don't forget to set a password with ‘passwd’. # Define a user account. Don't forget to set a password with ‘passwd’.
users.users.chrigi = { users.users.chrigi = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" "networkmanager"]; extraGroups = [ "wheel" "networkmanager" "docker"];
initialPassword = "password"; initialPassword = "password";
packages = with pkgs; [ packages = with pkgs; [
firefox firefox
tree tree
]; ];
}; };
virtualisation.docker = {
enable = true;
storageDriver = "btrfs";
};
xdg.portal = { xdg.portal = {
enable = true; enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-hyprland ]; extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];

Loading…
Cancel
Save

Powered by TurnKey Linux.