flake: quickshell: init

This commit is contained in:
Charlie Root 2025-04-16 22:34:25 +02:00 committed by Bloxx12
commit e311a8759e
3 changed files with 39 additions and 17 deletions

21
flake.lock generated
View file

@ -739,6 +739,26 @@
"type": "github" "type": "github"
} }
}, },
"quickshell": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1745709547,
"narHash": "sha256-xfP/NVZomh+L2ka0omPkhA9mB+4PJXGPMCv/bh+G4YA=",
"ref": "refs/heads/master",
"rev": "67524f9d8e4ac5e09ea4427e11f2284e6a6f93fe",
"revCount": 506,
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
},
"original": {
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
}
},
"root": { "root": {
"inputs": { "inputs": {
"helix": "helix", "helix": "helix",
@ -746,6 +766,7 @@
"impermanence": "impermanence", "impermanence": "impermanence",
"lanzaboote": "lanzaboote", "lanzaboote": "lanzaboote",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"quickshell": "quickshell",
"schizofox": "schizofox", "schizofox": "schizofox",
"systems": "systems_3" "systems": "systems_3"
} }

View file

@ -61,5 +61,12 @@
}; };
helix.url = "github:helix-editor/helix"; helix.url = "github:helix-editor/helix";
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
# THIS IS IMPORTANT
# Mismatched system dependencies will lead to crashes and other issues.
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
} }

View file

@ -5,22 +5,16 @@
pkgs, pkgs,
... ...
}: let }: let
# inherit (inputs) quickshell; inherit (inputs) quickshell;
# inherit (lib.generators) toKeyValue;
in { in {
# environment.systemPackages = [ environment.systemPackages = with pkgs; [
# qt6.qtimageformats # amog quickshell.packages.x86_64-linux.default
# qt6.qt5compat # shader fx qt6.qtimageformats
# (quickshell.packages.x86_64-linux.default.override { qt6.qt5compat
# withJemalloc = true; qt6.qtmultimedia
# withQtSvg = true; qt6.qtdeclarative
# withX11 = true; ];
# withPipewire = true;
# withPam = true; # taken from outfoxxed.
# withHyprland = true; qt.enable = true;
# })
# pamtester # lockscreen
# grim
# imagemagick # screenshot
# ];
} }