mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 15:45:39 +00:00
refactor: modularize host configuration
This commit is contained in:
parent
783b7c8705
commit
bb8d9c6752
10 changed files with 152 additions and 111 deletions
17
hosts/nixos/modules/programs.nix
Normal file
17
hosts/nixos/modules/programs.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.zsh.enable = true;
|
||||
programs.hyprland = {
|
||||
enable = true;
|
||||
withUWSM = true;
|
||||
xwayland.enable = true;
|
||||
};
|
||||
programs.thunar = {
|
||||
enable = true;
|
||||
plugins = with pkgs.xfce; [
|
||||
thunar-volman
|
||||
];
|
||||
};
|
||||
programs.xfconf.enable = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue