summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2022-12-11 21:39:05 +0100
committerTheArcaneBrony <myrainbowdash949@gmail.com>2022-12-11 21:39:05 +0100
commit8a531287ec0e76f77078f394407f385ebb330a36 (patch)
tree0dc1e11c3d9ee389ff2c5f24a980657298e2c16f
parentDeduplicate some configuration (diff)
downloadRory-Open-Architecture-8a531287ec0e76f77078f394407f385ebb330a36.tar.xz
Fix path
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
-rw-r--r--host/Rory-discordbots/configuration.nix54
1 files changed, 8 insertions, 46 deletions
diff --git a/host/Rory-discordbots/configuration.nix b/host/Rory-discordbots/configuration.nix
index 46576f5..61c9d3a 100644
--- a/host/Rory-discordbots/configuration.nix
+++ b/host/Rory-discordbots/configuration.nix
@@ -3,8 +3,7 @@
 {
   imports =
     [
-      ../../../modules/packages/vim.nix
-      ../../../modules/base-server.nix
+      ../../modules/base-server.nix
     ];
 
   networking = {
@@ -23,29 +22,13 @@
   i18n.defaultLocale = "en_US.UTF-8";
 
   services = {
- 	xserver = {
-		enable = true;
-  		videoDrivers = [ "intel" ];
-  		desktopManager.gnome.enable = true;
-		libinput.enable = true;
-		layout = "us";
-		modules = [ pkgs.xorg.xf86videointel ];
-	};
-	gnome = {
-		
-    		core-developer-tools.enable = false;
-		core-utilities.enable = false;
-		tracker-miners.enable = false;
-		tracker.enable = false;
-	};
-
-	printing.enable = false;
-	openssh = {
-          enable = true;
-          extraConfig = ''
-            MaxAuthTries 32
-            '';
-	};	
+ 	
+    openssh = {
+            enable = true;
+            extraConfig = ''
+              MaxAuthTries 32
+              '';
+    };	
   };
   security.sudo.wheelNeedsPassword = false;
   nixpkgs.config.allowUnfree = true;
@@ -58,8 +41,6 @@
     extraGroups = [ "wheel" ];
     packages = with pkgs; [
       #xterm
-      gnomeExtensions.vitals
-      gnomeExtensions.runcat
     ];
     initialPassword = "password";
   };
@@ -70,32 +51,13 @@
     lnav
     pciutils
     zsh
-    gnome-console
     feh
     git
     lsd
-    #nerdfonts
-    #element-web
     sshfs
-    cinnamon.nemo
-    firefox-bin
     kitty.terminfo
-    glxinfo
-    #epiphany
-    # Various extensions...
-    # - Gnome
-    #gnomeExtensions.vitals
-    #gnomeExtensions.runcat
-    #  - Dont work on gnome 43:
-    #gnomeExtensions.undecorate
-    #gnomeExtensions.inactivity
-    #gnomeExtensions.left-clock
-    # - Vim
     vimPlugins.vim-nix
   ];
-  fonts.fonts = with pkgs; [
-    (nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
-  ];
 
 
   system.stateVersion = "22.11"; # DO NOT EDIT!