Compare commits
3 Commits
1ce0ee80c5
...
01e95de29b
Author | SHA1 | Date |
---|---|---|
Zynh Ludwig | 01e95de29b | |
Zynh Ludwig | 66c75433d3 | |
Zynh Ludwig | 4e8e363008 |
|
@ -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;
|
||||
|
||||
|
|
|
@ -72,6 +72,7 @@ in
|
|||
# dotnet-sdk_8
|
||||
|
||||
pcmanfm
|
||||
nomacs
|
||||
];
|
||||
|
||||
home.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;
|
||||
|
|
Loading…
Reference in New Issue