Packages, Disks, & Hardware

This commit is contained in:
2023-06-30 11:01:10 +00:00
parent 2003e17fa4
commit 498328fea7
6 changed files with 56 additions and 59 deletions
+15
View File
@@ -0,0 +1,15 @@
# enabled profiles
{ config, lib, ... }:
let
secrets = config.sops.secrets;
in
{
my.profiles = {
hyprland.enable = true;
zsh.enable = true;
apps = {
desktop_apps = true;
dev_apps = true;
};
};
}