mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
moved files to make more sense and added experimental desktop configuration
This commit is contained in:
parent
22c5b6f826
commit
50fae0b2eb
38 changed files with 533 additions and 191 deletions
28
home-manager/home-manager.nix
Executable file
28
home-manager/home-manager.nix
Executable file
|
|
@ -0,0 +1,28 @@
|
|||
{config, pkgs, home-manager, ...}:
|
||||
{
|
||||
imports = [
|
||||
./zsh.nix
|
||||
./firefox.nix
|
||||
./bspwm.nix
|
||||
./sxhkd.nix
|
||||
./rofi.nix
|
||||
./polybar.nix
|
||||
./dunst.nix
|
||||
./alacritty.nix
|
||||
./theme.nix
|
||||
./picom.nix
|
||||
];
|
||||
programs.home-manager.enable = true;
|
||||
home = {
|
||||
username = "gerg";
|
||||
homeDirectory = "/home/gerg";
|
||||
stateVersion = "22.11";
|
||||
file = {
|
||||
".background-image".source = ../images/stars.jpg;
|
||||
".config" = {
|
||||
source = ./config;
|
||||
recursive = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue