upgrade nixpkgs
This commit is contained in:
parent
da809c45bd
commit
769d1eceb3
4 changed files with 6 additions and 8 deletions
|
@ -22,5 +22,5 @@ each host should have these files:
|
||||||
- divide steam and gamemode?
|
- divide steam and gamemode?
|
||||||
- laptop specific configuration (power profiles daemon, battery, etc)
|
- laptop specific configuration (power profiles daemon, battery, etc)
|
||||||
- sddm cursors no work :(
|
- sddm cursors no work :(
|
||||||
- try out the [new sddm options](https://search.nixos.org/options?channel=unstable&from=0&size=50&sort=relevance&type=packages&query=sddm)
|
- sddm x11 support, too. or maybe just remove x11
|
||||||
- gnome keyring / gcr for saving passwords
|
- gnome keyring / gcr for saving passwords
|
6
flake.lock
generated
6
flake.lock
generated
|
@ -487,11 +487,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_7": {
|
"nixpkgs_7": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1711523803,
|
"lastModified": 1715266358,
|
||||||
"narHash": "sha256-UKcYiHWHQynzj6CN/vTcix4yd1eCu1uFdsuarupdCQQ=",
|
"narHash": "sha256-doPgfj+7FFe9rfzWo1siAV2mVCasW+Bh8I1cToAXEE4=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "2726f127c15a4cc9810843b96cad73c7eb39e443",
|
"rev": "f1010e0469db743d14519a1efd37e23f8513d714",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -20,7 +20,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
services.xserver.displayManager.sessionPackages = [ cfg.package ];
|
services.displayManager.sessionPackages = [ cfg.package ];
|
||||||
xdg.portal = {
|
xdg.portal = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraPortals = [ pkgs.xdg-desktop-portal-gtk cfg.portalPackage ];
|
extraPortals = [ pkgs.xdg-desktop-portal-gtk cfg.portalPackage ];
|
||||||
|
|
|
@ -9,15 +9,13 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
services.xserver.enable = true; # this is needed, unfortunately!
|
|
||||||
services.xserver.excludePackages = [ pkgs.xterm ]; # prevents xterm on wayland and x
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
config.modules.desktop.themes.sddmTheme.package
|
config.modules.desktop.themes.sddmTheme.package
|
||||||
libsForQt5.qt5.qtsvg
|
libsForQt5.qt5.qtsvg
|
||||||
libsForQt5.qt5.qtgraphicaleffects
|
libsForQt5.qt5.qtgraphicaleffects
|
||||||
libsForQt5.qt5.qtquickcontrols2
|
libsForQt5.qt5.qtquickcontrols2
|
||||||
];
|
];
|
||||||
services.xserver.displayManager.sddm = {
|
services.displayManager.sddm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wayland.enable = true;
|
wayland.enable = true;
|
||||||
theme = config.modules.desktop.themes.sddmTheme.name;
|
theme = config.modules.desktop.themes.sddmTheme.name;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue