Compare commits

...

3 commits

3 changed files with 12 additions and 8 deletions

View file

@ -123,6 +123,9 @@
# List services that you want to enable:
# Enable trash:/// support
services.gvfs.enable = true;
# Enable the OpenSSH daemon.
services.openssh.enable = true;

View file

@ -72,6 +72,7 @@ in
# dotnet-sdk_8
pcmanfm
nomacs
];
home.file = { };

View file

@ -1,14 +1,14 @@
{ lib, ... }:
let
dirEntries = builtins.removeAttrs (builtins.readDir ./.) [ "default.nix" ];
moduleEntries = lib.attrsets.filterAttrs (n: v: v == "regular") dirEntries;
moduleNames = builtins.attrNames moduleEntries;
modulePaths = builtins.map (name: ./${name}) moduleNames;
in
{
imports = [
./dwm.nix
./i18n.nix
./audio.nix
./env.nix
./syncthing.nix
./plymouth.nix
];
imports = modulePaths;
snowhawk.i18n.enable = lib.mkDefault true;
snowhawk.audio.enable = lib.mkDefault true;