✨ feat(qt): Configure qt
This commit is contained in:
parent
cb800549e8
commit
bfc3156a1d
4 changed files with 33 additions and 1 deletions
19
flake.lock
19
flake.lock
|
@ -41,7 +41,8 @@
|
|||
"home-manager": "home-manager",
|
||||
"nixpkgs": "nixpkgs",
|
||||
"rose-pine": "rose-pine",
|
||||
"rose-pine-amfora": "rose-pine-amfora"
|
||||
"rose-pine-amfora": "rose-pine-amfora",
|
||||
"rose-pine-qt5ct": "rose-pine-qt5ct"
|
||||
}
|
||||
},
|
||||
"rose-pine": {
|
||||
|
@ -74,6 +75,22 @@
|
|||
"repo": "amfora",
|
||||
"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",
|
||||
|
|
|
@ -18,6 +18,10 @@
|
|||
url = "github:rose-pine/amfora";
|
||||
flake = false;
|
||||
};
|
||||
rose-pine-qt5ct = {
|
||||
url = "github:piperbly/rose-pine-qt5ct";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
||||
outputs =
|
||||
|
|
|
@ -47,6 +47,7 @@
|
|||
imports = [
|
||||
./gtk.nix
|
||||
./programs
|
||||
./qt.nix
|
||||
./services
|
||||
./xdg.nix
|
||||
./xorg
|
||||
|
|
10
home/qt.nix
Normal file
10
home/qt.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue