Compare commits

...

10 Commits

Author SHA1 Message Date
25c6507c3e updated quickshell 2026-08-15 20:12:58 +01:00
b33c816191 updated hyprland and quickshell, will deprecate waybar shortly 2026-08-10 20:46:39 +01:00
f2c68c8511 updated nvim and quickshell 2026-08-10 16:59:46 +01:00
06848de32a tailscale feature added to desktop 2026-08-10 12:11:03 +01:00
29413b1f67 fixed upower quickshell thing 2026-08-10 12:10:56 +01:00
bfeeacc434 moved upower to dedicated module 2026-08-07 19:04:33 +01:00
749ee86763 removed useless inputs from amddrivers 2026-08-07 19:04:19 +01:00
e56b948f91 updated nvim 2026-08-07 16:42:48 +01:00
c0da93fe55 enabled upower for quickshell 2026-08-05 17:12:49 +01:00
9b931a6284 updated nvim 2026-08-05 17:06:04 +01:00
7 changed files with 43 additions and 23 deletions

24
flake.lock generated
View File

@@ -366,11 +366,11 @@
"wshowkeys": "wshowkeys"
},
"locked": {
"lastModified": 1785863558,
"narHash": "sha256-xtLfe7viHVAK9PEfO5t/KZPxsVGGtdibthVj6c1t2gc=",
"lastModified": 1786391152,
"narHash": "sha256-P+dUN0wWRYLop9lLsnCOEi5bYE/GC5LvzV2VZh520TM=",
"ref": "refs/heads/main",
"rev": "b947debd8a73a1d81cac31304ff1ff8eccce902a",
"revCount": 52,
"rev": "b4426becc44de00e891098b9883eca2b2028f981",
"revCount": 53,
"type": "git",
"url": "https://git.voidarc.co.uk/voidarc/hypr"
},
@@ -940,11 +940,11 @@
"wrappers": "wrappers_2"
},
"locked": {
"lastModified": 1783352922,
"narHash": "sha256-59Kea6PaeTM6ZBEAWzdPnuLlij2emLd21JsPnobR3B0=",
"lastModified": 1786377545,
"narHash": "sha256-I5/PcFU0jlDw6+32MXpMGJxxHqWBUdYCt6DzFDctybw=",
"ref": "refs/heads/main",
"rev": "970da906087f0691932418db8757803d64f60c28",
"revCount": 94,
"rev": "dc386a5f5cf31925c513a3a39f546d5364289095",
"revCount": 100,
"type": "git",
"url": "https://git.voidarc.co.uk/voidarc/nvim"
},
@@ -1047,11 +1047,11 @@
"quickshell": {
"flake": false,
"locked": {
"lastModified": 1785316762,
"narHash": "sha256-YDCoSJbBsugRcugBSh4mgwaQkz51RbMEjMxPgZPsNoA=",
"lastModified": 1786547899,
"narHash": "sha256-QxLEKq1R455FlEmaarx3cq9mk4jSBxHg3CyseLiOick=",
"ref": "refs/heads/main",
"rev": "afbe360b080f349d27359b8507ce429aaa5a5a7e",
"revCount": 26,
"rev": "e33041b66c66a1b68930bfd3bb58746ffbd5f4b2",
"revCount": 72,
"type": "git",
"url": "https://git.voidarc.co.uk/voidarc/quickshell"
},

View File

@@ -3,7 +3,11 @@
inputs,
...
}: {
flake.nixosModules.quickshell = moduleWithSystem ({self', ...}: {
flake.nixosModules.quickshell = moduleWithSystem ({
self',
pkgs,
...
}: {
environment.systemPackages = with self'.packages; [
quickshell
];

View File

@@ -0,0 +1,11 @@
{
self,
moduleWithSystem,
...
}: {
flake.nixosModules.tailscale = moduleWithSystem ({...}: {
services.tailscale = {
enable = true;
};
});
}

View File

@@ -9,6 +9,7 @@
mobile02Configuration
intelDrivers
development
upower
];
};
}

View File

@@ -10,6 +10,7 @@
sddm
network
omnisearch
tailscale
];
in {
imports = modules;

View File

@@ -1,13 +1,5 @@
{
self,
inputs,
...
}: {
flake.nixosModules.amdDrivers = {
pkgs,
lib,
...
}: {
{...}: {
flake.nixosModules.amdDrivers = {pkgs, ...}: {
environment.systemPackages = with pkgs; [
mesa
rocmPackages.rocm-smi

View File

@@ -0,0 +1,11 @@
{...}: {
flake.nixosModules.upower = {pkgs, ...}: {
environment.systemPackages = with pkgs; [
upower
];
services = {
upower.enable = true;
power-profiles-daemon.enable = true;
};
};
}