about summary refs log tree commit diff
path: root/machines/x220-gnome
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <patryk@niedzwiedzinski.cyou>2024-08-16 11:58:04 +0200
committerPatryk Niedźwiedziński <patryk@niedzwiedzinski.cyou>2024-08-16 11:58:04 +0200
commit5349051441deaf903ae5b933916ef3ec215782af (patch)
tree1857d97c700dc4b4b58d7cc6f08ef3e10c747c6c /machines/x220-gnome
parent0f33b8da0308b649348c2a71eab68218668124f5 (diff)
downloaddots-5349051441deaf903ae5b933916ef3ec215782af.tar.gz
dots-5349051441deaf903ae5b933916ef3ec215782af.zip
29 current 2024-08-16 11:51:24 24.05.20240626.89c4987 6.6.35 *
Diffstat (limited to 'machines/x220-gnome')
-rw-r--r--machines/x220-gnome/configuration.nix10
-rw-r--r--machines/x220-gnome/pn.nix18
2 files changed, 19 insertions, 9 deletions
diff --git a/machines/x220-gnome/configuration.nix b/machines/x220-gnome/configuration.nix
index 30cfac6..ea23c3e 100644
--- a/machines/x220-gnome/configuration.nix
+++ b/machines/x220-gnome/configuration.nix
@@ -7,6 +7,7 @@
 		./gnome.nix
 		./pass.nix
 		./hardware-configuration.nix
+		./pn.nix
 		];
 
 # Enable networking
@@ -30,15 +31,6 @@
 		LC_TELEPHONE = "en_US.UTF-8";
 		LC_TIME = "en_US.UTF-8";
 	};
-# Define a user account. Don't forget to set a password with ‘passwd’.
-	users.users.pn = {
-		isNormalUser = true;
-		description = "Patryk Niedzwiedzinski";
-		extraGroups = [ "networkmanager" "wheel" ];
-		packages = with pkgs; [
-			gnomeExtensions.gsconnect
-		];
-	};
 
 	programs.vim.defaultEditor = true;
 	programs.nano.enable = false;
diff --git a/machines/x220-gnome/pn.nix b/machines/x220-gnome/pn.nix
new file mode 100644
index 0000000..add63cd
--- /dev/null
+++ b/machines/x220-gnome/pn.nix
@@ -0,0 +1,18 @@
+{ pkgs, ... }:
+{
+
+
+
+
+	users.users.pn = {
+		isNormalUser = true;
+		description = "Patryk Niedzwiedzinski";
+		extraGroups = [ "networkmanager" "wheel" ];
+		packages = with pkgs; [
+			gnomeExtensions.gsconnect
+		];
+	};
+	
+
+
+}