ref(nix): sorted into modules

This commit is contained in:
Léana 江 2023-12-24 21:14:54 +01:00 committed by Léana 江
parent c228945485
commit 7a39b3e3fd
12 changed files with 2630 additions and 217 deletions

View file

@ -0,0 +1,35 @@
{
pkgs,
unstable,
...
}: {
environment.systemPackages = with pkgs; [
curl
vim
stow
git
gcc
];
# TODO: try to move this to home-manager
programs = {
gnome-terminal.enable = true;
};
services.xserver = {
enable = true;
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
extraPackages = hp:
with hp; [
neat-interpolation
];
};
displayManager.gdm.enable = true;
};
programs.nm-applet.enable = true;
programs.fish.enable = true;
environment.shells = [pkgs.fish];
}