From dcba024593e8ea87ce3200f810e5727a086d7b8f Mon Sep 17 00:00:00 2001 From: autumn Date: Mon, 25 Aug 2025 18:29:57 -0600 Subject: [PATCH] unfucked it --- flake.nix | 17 +++++++++-------- home-manager/ruby/home.nix | 7 ++----- system/yukigekko/configuration.nix | 4 ++-- 3 files changed, 13 insertions(+), 15 deletions(-) diff --git a/flake.nix b/flake.nix index 0456df0..5d18e60 100644 --- a/flake.nix +++ b/flake.nix @@ -22,15 +22,16 @@ }; in { - homeConfigurations.ruby= home-manager.lib.homeManagerConfiguration { - extraSpecialArgs = specialArgs; - pkgs = nixpkgs.legacyPackages.${system}; - modules = [ + homeConfigurations.ruby= home-manager.lib.homeManagerConfiguration { + extraSpecialArgs = specialArgs; + pkgs = nixpkgs.legacyPackages.${system}; + modules = [ # ./home-manager/${user}/home.nix - ./home-manager/ruby/home.nix - ]; - }; - + ./home-manager/ruby/home.nix + ]; + }; + + nixosConfigurations."yukigekko" = nixpkgs.lib.nixosSystem{ specialArgs = specialArgs; modules = [ diff --git a/home-manager/ruby/home.nix b/home-manager/ruby/home.nix index b4292e2..1dfbcd0 100644 --- a/home-manager/ruby/home.nix +++ b/home-manager/ruby/home.nix @@ -3,8 +3,8 @@ { # Home Manager needs a bit of information about you and the paths it should # manage. - home.username = "autumn"; - home.homeDirectory = "/home/autumn"; + home.username = "ruby"; + home.homeDirectory = "/home/ruby"; home.stateVersion = "25.05"; # Please read the comment before changing. @@ -41,9 +41,6 @@ ]; programs.htop.enable = true; programs.starship.enable = true; - programs.bash.initExtra = " - fish - "; wayland.windowManager.river.enable = true; diff --git a/system/yukigekko/configuration.nix b/system/yukigekko/configuration.nix index db2fa84..509649f 100644 --- a/system/yukigekko/configuration.nix +++ b/system/yukigekko/configuration.nix @@ -71,13 +71,13 @@ # Define a user account. Don't forget to set a password with ‘passwd’. users.users.ruby= { isNormalUser = true; - description = "Autumn on laptop"; + description = "Ruby"; extraGroups = [ "networkmanager" "wheel" ]; }; # Install firefox. programs.firefox.enable = true; - # programs.bash.interactiveShellInit = "fish"; + programs.bash.interactiveShellInit = "fish"; programs.appimage.enable = true; programs.openvpn3.enable = true;