mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
28 lines
521 B
Nix
Executable file
28 lines
521 B
Nix
Executable file
{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;
|
|
};
|
|
};
|
|
};
|
|
}
|