undoing stupid changes

This commit is contained in:
autumn
2025-08-25 16:01:38 -06:00
parent 772b6a9e0e
commit 82344c55a9
2 changed files with 57 additions and 58 deletions

View File

@@ -24,14 +24,14 @@
}; };
in { in {
homeConfigurations.${user} = home-manager.lib.homeManagerConfiguration { homeConfigurations.${user} = home-manager.lib.homeManagerConfiguration {
extraSpecialArgs = specialArgs; extraSpecialArgs = specialArgs;
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
modules = [ modules = [
./home-manager/${user}/home.nix # ./home-manager/${user}/home.nix
./home-manager/${user}/yukigekko-home.nix ./home-manager/${user}/yukigekko-home.nix
]; ];
}; };
nixosConfigurations."yukigekko" = nixpkgs.lib.nixosSystem{ nixosConfigurations."yukigekko" = nixpkgs.lib.nixosSystem{
specialArgs = specialArgs; specialArgs = specialArgs;
@@ -39,14 +39,14 @@
./system/nixos/configuration.nix ./system/nixos/configuration.nix
# home-manager.nixosModules.home-manager{ # home-manager.nixosModules.home-manager{
# home-manager = { # home-manager = {
# #pkgs = nixpkgs.legacyPackages.${system};
# useGlobalPkgs = true; # useGlobalPkgs = true;
# useUserPackages = true; # useUserPackages = true;
# extraSpecialArgs = specialArgs; # extraSpecialArgs = specialArgs;
# users.${user} = { # users.${user} = {
# # pkgs = nixpkgs.legacyPackages.${system};
# imports = [ # imports = [
# ./home-manager/${user}/home.nix # #./home-manager/${user}/home.nix
# ./home-manager/${user}/yukigekko-home.nix # ./home-manager/autumn/yukigekko-home.nix
# ]; # ];
# }; # };
# }; # };

View File

@@ -3,66 +3,65 @@
{ {
# Home Manager needs a bit of information about you and the paths it should # Home Manager needs a bit of information about you and the paths it should
# manage. # manage.
# home.username = "autumn"; home.username = "autumn";
# home.homeDirectory = "/home/autumn"; home.homeDirectory = "/home/autumn";
# home.stateVersion = "25.05"; # Please read the comment before changing. home.stateVersion = "25.05"; # Please read the comment before changing.
# programs.home-manager.enable = true; programs.home-manager.enable = true;
# nixpkgs.config = { nixpkgs.config = {
# alowUnfree = true; alowUnfree = true;
# allowUnfreePredicate = (_: true); allowUnfreePredicate = (_: true);
# }; };
# home.packages = with pkgs; [ home.packages = with pkgs; [
# neofetch neofetch
# vscodium-fhs vscodium-fhs
# nerd-fonts.hack nerd-fonts.hack
# vesktop vesktop
# obsidian obsidian
# ccls ccls
# docker-language-server docker-language-server
# nil nil
# ty ty
# rustc rustc
# rustup rustup
# htop htop
# gnumake gnumake
# python314Full python314Full
# eza eza
# gleam gleam
# ruff ruff
# ruby ruby
# vscode-extensions.castwide.solargraph vscode-extensions.castwide.solargraph
# nim-2_0 nim-2_0
# nimlangserver nimlangserver
# ]; ];
programs.htop.enable = true;
# programs.htop.enable = true; programs.starship.enable = true;
# programs.starship.enable = true; programs.bash.initExtra = "
# programs.bash.initExtra = " fish
# fish ";
# ";
wayland.windowManager.river.enable = true; wayland.windowManager.river.enable = true;
# home.sessionVariables = { home.sessionVariables = {
# EDITOR = "helix"; EDITOR = "helix";
# TERM = "alacritty"; TERM = "alacritty";
# }; };
imports = [ imports = [
# ../packages/fish/fish.nix ../packages/fish/fish.nix
../packages/river/river.nix ../packages/river/river.nix
# ../packages/alacritty/alacritty.nix ../packages/alacritty/alacritty.nix
# ../packages/helix/helix.nix ../packages/helix/helix.nix
# ../packages/fuzzel/fuzzel.nix ../packages/fuzzel/fuzzel.nix
../packages/waybar/waybar.nix ../packages/waybar/waybar.nix
# ../packages/git/git.nix ../packages/git/git.nix
# ../packages/starship/starship.nix ../packages/starship/starship.nix
]; ];
} }