Files
cnix/nixos/core/default.nix
2024-07-31 18:10:04 +02:00

25 lines
381 B
Nix

{pkgs, ...}: {
imports = [
./nix
./xdg.nix
./zsh.nix
./fonts.nix
./home-manager.nix
./hyprland.nix
];
security = {
rtkit.enable = true;
pam.services.hyprlock = {};
};
programs.dconf.enable = true;
environment.localBinInPath = true;
console.useXkbConfig = true;
environment.systemPackages = with pkgs; [
anyrun
stow
];
}