feat: introduced new home-manager features

Changed wallpaper to better fit the style of the WM
- affected common variables
- affected hyprland configuration
- affected stylix configuration
- included additional flake inputs
Added Spicetify packages (not working)
Added obs-studio home-manager program option
Added vimkey navigation keybinds for Hyprland
This commit is contained in:
Zhongheng Liu 2024-08-25 18:36:49 +08:00
commit 5515d4a9cd
No known key found for this signature in database
9 changed files with 66 additions and 5 deletions

View file

@ -13,6 +13,10 @@
home-manager.inputs.nixpkgs.follows = "nixpkgs";
stylix.url = "github:danth/stylix";
spicetify-nix = {
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
@ -20,6 +24,7 @@
nixpkgs,
home-manager,
stylix,
spicetify-nix,
...
} @ inputs: let
inherit (self) outputs;
@ -47,6 +52,7 @@
./home-manager/${stevenUserName}/home.nix
inputs.nixvim.homeManagerModules.nixvim
inputs.stylix.homeManagerModules.stylix
inputs.spicetify-nix.homeManagerModules.default
];
};
};