mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
flakes
This commit is contained in:
commit
beaf5202ca
37 changed files with 1802 additions and 0 deletions
26
home-manager.nix
Executable file
26
home-manager.nix
Executable file
|
|
@ -0,0 +1,26 @@
|
|||
{config, pkgs, home-manager, ...}:
|
||||
{
|
||||
imports = [
|
||||
./home-manager/zsh.nix
|
||||
./home-manager/firefox.nix
|
||||
./home-manager/bspwm.nix
|
||||
./home-manager/sxhkd.nix
|
||||
./home-manager/rofi.nix
|
||||
./home-manager/polybar.nix
|
||||
./home-manager/dunst.nix
|
||||
./home-manager/alacritty.nix
|
||||
./home-manager/theme.nix
|
||||
./home-manager/picom.nix
|
||||
];
|
||||
programs.home-manager.enable = true;
|
||||
home = {
|
||||
stateVersion = "22.11";
|
||||
file = {
|
||||
".background-image".source = ./images/stars.jpg;
|
||||
".config" = {
|
||||
source = ./home/.config;
|
||||
recursive = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue