Johan Rong 3 mesi fa
parent
commit
7cfbf9f4d3

+ 1 - 1
config/hosts.nix

@@ -4,7 +4,7 @@ in
 {
   nixstation = {
     hostname = "nixstation";
-    dir = "desktop-nixos-workstation";
+    dir = "nixstation";
     arch = "x86_64-linux";
     user = users.default;
   };

+ 5 - 11
flake.nix

@@ -74,16 +74,10 @@
         home-manager = inputs.home-manager;
       };
 
-      #homeConfigurations."${hosts.workstation.user}@${hosts.workstation.hostname}" = mkHomeConfigurations {
-      #  host = hosts.workstation;
-      #  nixpkgs = inputs.nixpkgs;
-      #  home-manager = inputs.home-manager;
-      #};
-
-      #homeConfigurations."${hosts.wsl.hostname}" = mkHomeConfigurations {
-      #  host = hosts.wsl;
-      #  nixpkgs = inputs.nixpkgs-stable;
-      #  home-manager = inputs.home-manager-stable;
-      #};
+      homeConfigurations."${hosts.nixstation.user}@${hosts.nixstation.hostname}" = mkHomeConfigurations {
+        host = hosts.nixstation;
+        nixpkgs = inputs.nixpkgs;
+        home-manager = inputs.home-manager;
+      };
     };
 }

+ 0 - 2
home/features/application/bashrc.nix

@@ -29,8 +29,6 @@ home = {
           jclone() {
             git clone https://github.com/johron/$1
           }
-          XCOMPOSEFILE=$HOME/.XCompose
-          #eval "$(direnv hook bash)"
         '';
       };
     };

+ 1 - 1
hosts/desktop-nixos-workstation/configuration.nix → hosts/nixstation/configuration.nix

@@ -5,7 +5,7 @@ let
 in
 {
   imports = [
-    ./hardware-configuration.nix
+    ./hardware.nix
 
     ../../nixos/hardware/gpu/nvidia.nix
     ../../nixos/hardware/networking/bcm4360.nix

+ 0 - 0
hosts/desktop-nixos-workstation/hardware-configuration.nix → hosts/nixstation/hardware.nix


+ 0 - 0
hosts/desktop-nixos-workstation/home.nix → hosts/nixstation/home.nix


+ 0 - 1
nixos/features/system/basic.nix

@@ -37,7 +37,6 @@
   services.flatpak = {
     enable = true;
     packages = [
-      "com.github.gabutakut.gabutdm"
       "com.github.tchx84.Flatseal"
       "com.dec05eba.gpu_screen_recorder"
     ];