Refactor the whole configuration #1

Merged
caem merged 354 commits from refactor into master 2025-02-01 14:05:16 +01:00
2 changed files with 18 additions and 0 deletions
Showing only changes of commit 5c60d76735 - Show all commits

View file

@ -0,0 +1,5 @@
{ lib, ... }:
{
imports = lib.getModuleImports ./.;
}

View file

@ -0,0 +1,13 @@
{ pkgs, username, ... }:
{
environment.systemPackages = with pkgs; [
tidal-hifi
];
environment.persistence."/nix/persist" = {
users."${username}".directories = [
".config/tidal-hifi"
];
};
}