Compare commits

..

2 commits

Author SHA1 Message Date
e49f849b6e
Nyx: yeet deprecated pulseaudio thing 2025-01-05 09:35:34 +02:00
3eb282fb23
Nyx: add quickshell 2025-01-05 09:33:40 +02:00
5 changed files with 71 additions and 13 deletions

View file

@ -66,11 +66,11 @@
"nuscht-search": "nuscht-search"
},
"locked": {
"lastModified": 1736033375,
"narHash": "sha256-CeTokGIJpTd8kfaqLy3ururMe4N+LZpF62ofXAh0KtU=",
"lastModified": 1736057558,
"narHash": "sha256-qEAlxO+z2cNiGPeaB8XD3ps8VqbjRoOIge2DHwIAt+0=",
"owner": "catppuccin",
"repo": "nix",
"rev": "89bbaf1987e8e0e2c891463ebb5be3a6cbd781a1",
"rev": "c2818cb875dce80af45599f0c94a4d2646d0114e",
"type": "github"
},
"original": {
@ -1191,11 +1191,11 @@
"treefmt-nix": "treefmt-nix_2"
},
"locked": {
"lastModified": 1736027142,
"narHash": "sha256-AZ5YNuV9w8SSxCM2KYnvcqntxPKED53oMjDotEj5jyU=",
"lastModified": 1736062223,
"narHash": "sha256-E2pP/HI/adDIzDhYR25xlTQpvMnssZPhozHbTg66H/E=",
"owner": "nix-community",
"repo": "NUR",
"rev": "782119f4b55be55f6578f8387c1b9a8017719997",
"rev": "c069281f9ef15582d5c1c59995e9d6cf2c0ed1b6",
"type": "github"
},
"original": {
@ -1275,6 +1275,26 @@
"type": "github"
}
},
"quickshell": {
"inputs": {
"nixpkgs": [
"nixpkgs-smol"
]
},
"locked": {
"lastModified": 1735994283,
"narHash": "sha256-6WoauttwnePkkRA84v5f+6J2iR/lrrLA7mmzh6kX7+0=",
"ref": "refs/heads/master",
"rev": "fca058e66cfc01d0a45805701234961a16573646",
"revCount": 450,
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
},
"original": {
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
}
},
"root": {
"inputs": {
"ags": "ags",
@ -1288,6 +1308,7 @@
"nixpkgs": "nixpkgs_5",
"nixpkgs-smol": "nixpkgs-smol",
"nur": "nur",
"quickshell": "quickshell",
"sops-nix": "sops-nix",
"spicetify-nix": "spicetify-nix",
"wezterm": "wezterm",
@ -1343,11 +1364,11 @@
]
},
"locked": {
"lastModified": 1735964101,
"narHash": "sha256-FUKeipaDxAFf+0jun6CKk37g7UALIeisSz6L19KL+WM=",
"lastModified": 1736050526,
"narHash": "sha256-wscvKDsyIES59ltENnOw7Hz8WKU8hg5m7dYbcJN2u6A=",
"owner": "Gerg-L",
"repo": "spicetify-nix",
"rev": "5b2bbc7a627ea983cef34f4a8ec81cd597529943",
"rev": "78c9ace8b9e1d7b64b4d797a066047c2332d24f6",
"type": "github"
},
"original": {
@ -1594,11 +1615,11 @@
"nixpkgs": "nixpkgs_8"
},
"locked": {
"lastModified": 1735971783,
"narHash": "sha256-JhV87lwIdK9S/o7CnVtomkyrilz+DEldIBEgBkVD7ag=",
"lastModified": 1736045622,
"narHash": "sha256-+cIdUGhrVEpn2+ImWDVoA9c4jwsWDQnTQh2eUUdhf3M=",
"owner": "0xc000022070",
"repo": "zen-browser-flake",
"rev": "655b385dfefa016699e1e6baf22027b40205976e",
"rev": "489f8476303231d437ff7676605733d5acbff236",
"type": "github"
},
"original": {

View file

@ -36,6 +36,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs-smol";
};
ags = {
url = "github:Aylur/ags/v1";
inputs.nixpkgs.follows = "nixpkgs";

View file

@ -92,7 +92,6 @@
gnome.gnome-keyring.enable = true;
};
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
users.users = {

View file

@ -3,6 +3,7 @@
./cli/default.nix
./hypr/default.nix
./ags/default.nix
./quickshell/default.nix
./spotify/default.nix
];
}

View file

@ -0,0 +1,32 @@
{
pkgs,
inputs,
...
}: {
home = {
packages = with pkgs; [
(inputs.quickshell.packages.${pkgs.system}.default.override
{
withJemalloc = true;
withQtSvg = true;
withWayland = true;
withX11 = false;
withPipewire = true;
withPam = true;
withHyprland = true;
withI3 = false;
})
swww
fd
wl-clipboard
cliphist
brightnessctl
slurp
pwvucontrol
libnotify
kdePackages.full
kdePackages.qtdeclarative
];
};
}