some resturcturing of hm 2

This commit is contained in:
cnst
2024-07-07 09:45:20 +02:00
parent 8fe5665135
commit 38dd844149
4 changed files with 10 additions and 8 deletions

6
flake.lock generated
View File

@@ -414,11 +414,11 @@
]
},
"locked": {
"lastModified": 1720188602,
"narHash": "sha256-lC3byBmhVZFzWl/dCic8+cKUEEAXAswWOYjq4paFmbo=",
"lastModified": 1720327769,
"narHash": "sha256-kAsg3Lg4YKKpGw+f1W2s5hzjP8B0y/juowvjK8utIag=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "e3582e5151498bc4d757e8361431ace8529e7bb7",
"rev": "6b7ce96f34b324e4e104abc30d06955d216bac71",
"type": "github"
},
"original": {

View File

@@ -1,6 +1,8 @@
{ pkgs, config, ... }:
{
imports = [ ./gtk.nix ];
pkgs,
config,
...
}: {
xdg = {
userDirs = {
enable = true;
@@ -16,7 +18,7 @@
};
portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
extraPortals = [pkgs.xdg-desktop-portal-gtk];
};
};
dconf = {

View File

@@ -1,6 +1,6 @@
{
imports = [
./git
./shell
./git/cnst.nix
./shell/cnst.nix
];
}