From ceb13db10a6b3a31d2c3fb98949bcbc7559bd350 Mon Sep 17 00:00:00 2001 From: Adam Rabjerg Date: Wed, 19 Oct 2022 11:52:19 +0200 Subject: [PATCH] moved user adam to own config file. --- configuration.nix | 40 ---------------------------------------- user-adam.nix | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 40 deletions(-) create mode 100644 user-adam.nix diff --git a/configuration.nix b/configuration.nix index 5adb1ea..45684af 100644 --- a/configuration.nix +++ b/configuration.nix @@ -97,46 +97,6 @@ # Enable touchpad support (enabled default in most desktopManager). # services.xserver.libinput.enable = true; - # Define a user account. Don't forget to set a password with ‘passwd’. - users.users.adam = { - isNormalUser = true; - description = "Adam Rabjerg"; - extraGroups = [ "networkmanager" "wheel" "docker" ]; - packages = with pkgs; [ - # Web - firefox - thunderbird - nextcloud-client - - # Communication - gajim - signal-desktop - - # Text and office - kate - libreoffice-qt - - # media manipulation - gimp - - # Terminal - guake - - # entertainment - spotify - - # dev - vscodium - kicad - - # security - yubioath-desktop - nmap - - # Desktop - ]; - }; - # Allow unfree packages nixpkgs.config.allowUnfree = true; diff --git a/user-adam.nix b/user-adam.nix new file mode 100644 index 0000000..4b941b6 --- /dev/null +++ b/user-adam.nix @@ -0,0 +1,39 @@ + # Define a user account. Don't forget to set a password with ‘passwd’. + users.users.adam = { + isNormalUser = true; + description = "Adam Rabjerg"; + extraGroups = [ "networkmanager" "wheel" "docker" ]; + packages = with pkgs; [ + # Web + firefox + thunderbird + nextcloud-client + + # Communication + gajim + signal-desktop + + # Text and office + kate + libreoffice-qt + + # media manipulation + gimp + + # Terminal + guake + + # entertainment + spotify + + # dev + vscodium + kicad + + # security + yubioath-desktop + nmap + + # Desktop + ]; + }; \ No newline at end of file