feat(qt): Configure qt

This commit is contained in:
punkfairie 2024-11-03 13:16:43 -08:00
parent cb800549e8
commit bfc3156a1d
Signed by: punkfairie
GPG key ID: 01823C057725C266
4 changed files with 33 additions and 1 deletions

View file

@ -41,7 +41,8 @@
"home-manager": "home-manager", "home-manager": "home-manager",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"rose-pine": "rose-pine", "rose-pine": "rose-pine",
"rose-pine-amfora": "rose-pine-amfora" "rose-pine-amfora": "rose-pine-amfora",
"rose-pine-qt5ct": "rose-pine-qt5ct"
} }
}, },
"rose-pine": { "rose-pine": {
@ -74,6 +75,22 @@
"repo": "amfora", "repo": "amfora",
"type": "github" "type": "github"
} }
},
"rose-pine-qt5ct": {
"flake": false,
"locked": {
"lastModified": 1681348150,
"narHash": "sha256-mfkVexp3deDZCwbq/P8Ynf1gYwF5kVXfGGv7BEGFZCU=",
"owner": "piperbly",
"repo": "rose-pine-qt5ct",
"rev": "61c90bc63291508f2cec6e8589e35af637a75374",
"type": "github"
},
"original": {
"owner": "piperbly",
"repo": "rose-pine-qt5ct",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View file

@ -18,6 +18,10 @@
url = "github:rose-pine/amfora"; url = "github:rose-pine/amfora";
flake = false; flake = false;
}; };
rose-pine-qt5ct = {
url = "github:piperbly/rose-pine-qt5ct";
flake = false;
};
}; };
outputs = outputs =

View file

@ -47,6 +47,7 @@
imports = [ imports = [
./gtk.nix ./gtk.nix
./programs ./programs
./qt.nix
./services ./services
./xdg.nix ./xdg.nix
./xorg ./xorg

10
home/qt.nix Normal file
View file

@ -0,0 +1,10 @@
{ inputs, ... }:
{
xdg.configFile."qt5ct/colors/rose-pine.conf".source = "${inputs.rose-pine-qt5ct}/rose-pine.conf";
qt = {
enable = true;
style.name = "adwaita";
};
}