lapdiv #1

Merged
autumn merged 7 commits from lapdiv into main 2025-08-25 18:32:21 -06:00
2 changed files with 68 additions and 65 deletions
Showing only changes of commit 772b6a9e0e - Show all commits

View File

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

View File

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