Compare commits

..

1 Commits

Author SHA1 Message Date
1c721affa5 updated nvim 2026-08-05 16:57:19 +01:00
7 changed files with 23 additions and 43 deletions

24
flake.lock generated
View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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