my system configurations ^-^
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: quickshell

willow dc1a8a29 0ec1cc30

+46 -1
+21
flake.lock
··· 590 590 "type": "github" 591 591 } 592 592 }, 593 + "quickshell": { 594 + "inputs": { 595 + "nixpkgs": [ 596 + "nixpkgs-unstable" 597 + ] 598 + }, 599 + "locked": { 600 + "lastModified": 1750417777, 601 + "narHash": "sha256-QfBNyjcJ10rUWn2TIrsZC6hFLNKCzi6dHeb04s+EGhI=", 602 + "ref": "refs/heads/master", 603 + "rev": "e0457dda90778e7bebf78334b00fc0e71cb7999b", 604 + "revCount": 589, 605 + "type": "git", 606 + "url": "https://git.outfoxxed.me/outfoxxed/quickshell" 607 + }, 608 + "original": { 609 + "type": "git", 610 + "url": "https://git.outfoxxed.me/outfoxxed/quickshell" 611 + } 612 + }, 593 613 "root": { 594 614 "inputs": { 595 615 "agenix": "agenix", ··· 602 622 "nixos-wsl": "nixos-wsl", 603 623 "nixpkgs": "nixpkgs_2", 604 624 "nixpkgs-unstable": "nixpkgs-unstable", 625 + "quickshell": "quickshell", 605 626 "spicetify-nix": "spicetify-nix", 606 627 "stylix": "stylix", 607 628 "systems": "systems_2",
+6
flake.nix
··· 130 130 nixpkgs-stable.follows = "nixpkgs"; 131 131 }; 132 132 }; 133 + 134 + quickshell = { 135 + url = "git+https://git.outfoxxed.me/outfoxxed/quickshell"; 136 + 137 + inputs.nixpkgs.follows = "nixpkgs-unstable"; 138 + }; 133 139 }; 134 140 }
+1 -1
modules/home/desktop/niri/default.nix
··· 71 71 ]; 72 72 spawn-at-startup = [ 73 73 { 74 - command = [(lib.getExe pkgs.xwayland-satellite-unstable)]; 74 + command = [(lib.getExe pkgs.xwayland-satellite-unstable) "qs"]; 75 75 } 76 76 ]; 77 77 environment = {
+1
modules/home/programs/gui/default.nix
··· 19 19 # ./cura.nix # 3dp 20 20 # ./lightburn.nix # cnc 21 21 # ./obs-studio.nix # media 22 + ./quickshell.nix # core 22 23 ./spicetify.nix # music 23 24 ./thunderbird.nix # mail 24 25 ./tofi.nix # core
+17
modules/home/programs/gui/quickshell.nix
··· 1 + { 2 + osConfig, 3 + lib, 4 + inputs, 5 + pkgs, 6 + ... 7 + }: let 8 + cfg = osConfig.settings.programs; 9 + in { 10 + config = lib.mkIf (cfg.gui.enable 11 + && cfg.categories.core.enable) { 12 + home.packages = [ 13 + inputs.quickshell.packages.${pkgs.system}.default 14 + ]; 15 + qt.enable = true; 16 + }; 17 + }