mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
32 lines
604 B
Nix
32 lines
604 B
Nix
{config, pkgs, ...}:
|
|
{
|
|
imports = [
|
|
./librewolf.nix
|
|
./sxhkd.nix
|
|
./rofi.nix
|
|
./polybar.nix
|
|
./theme.nix
|
|
./picom.nix
|
|
./git.nix
|
|
./spicetify.nix
|
|
./neovim
|
|
];
|
|
xsession.numlock.enable = true;
|
|
programs.home-manager.enable = true;
|
|
home = {
|
|
username = "gerg";
|
|
homeDirectory = "/home/gerg";
|
|
stateVersion = "22.11";
|
|
file = {
|
|
".background-image".source = ../images/nix-stars.png;
|
|
".config" = {
|
|
source = ./config;
|
|
recursive = true;
|
|
};
|
|
".dwm" = {
|
|
source = ./dwm;
|
|
recursive = true;
|
|
};
|
|
};
|
|
};
|
|
}
|