This commit is contained in:
Aria Nolan 2023-10-29 20:09:40 -04:00
parent ef2f581dee
commit 9e68baee1c
3 changed files with 14 additions and 14 deletions

View file

@ -48,7 +48,10 @@
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.users."tacocat" = ./users/tacocat/home.nix; home-manager.users."tacocat".modules = [
./users/tacocat/home.nix
./users/tacocat/wayland
];
home-manager.extraSpecialArgs = {inherit inputs;}; home-manager.extraSpecialArgs = {inherit inputs;};
} }
]; ];
@ -60,6 +63,7 @@
extraSpecialArgs = {inherit inputs;}; # Pass flake inputs to our config extraSpecialArgs = {inherit inputs;}; # Pass flake inputs to our config
modules = [ modules = [
./users/tacocat/home.nix ./users/tacocat/home.nix
./users/tacocat/wayland
]; ];
}; };

View file

@ -11,7 +11,6 @@
sessionPath = [ sessionPath = [
"$HOME/.local/bin" "$HOME/.local/bin"
"$HOME/.dotnet" "$HOME/.dotnet"
"$HOME/.cargo/bin"
]; ];
shellAliases = { shellAliases = {
# cat = "bat"; # cat = "bat";
@ -31,12 +30,12 @@
jdk20 jdk20
pdftk pdftk
git git
git-crypt # git-crypt
(writeShellScriptBin "hs-way" '' # (writeShellScriptBin "hs-way" ''
home-manager --flake $HOME/nix-config/#tacocat build # home-manager --flake $HOME/nix-config/#tacocat build
# GEN=$(home-manager generations | head -1 | awk '{print $NF}') # # GEN=$(home-manager generations | head -1 | awk '{print $NF}')
"$HOME/nix-config/result/specialisation/wayland/activate" # "$HOME/nix-config/result/specialisation/wayland/activate"
'') # '')
]; ];
}; };
@ -50,7 +49,6 @@
./shell ./shell
./helix ./helix
./emacs ./emacs
./wayland
]; ];
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.

View file

@ -1,10 +1,8 @@
{pkgs, ...}: {pkgs, ...}:
{ {
specialisation.wayland.configuration = {
imports = [ imports = [
./waybar ./waybar
]; ];
};
xdg.configFile."river" = { xdg.configFile."river" = {
source = ./river; source = ./river;