Compare commits

...

3 Commits

Author SHA1 Message Date
25e647190b devtools: Move rust feature to devtools 2026-04-10 14:53:19 +02:00
c942a482c2 Zen: Enable recently used tab switch order 2026-04-10 14:48:17 +02:00
a802c85678 Docker+Tux: Add docker support 2026-04-10 14:47:38 +02:00
7 changed files with 25 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
{ inputs, ... }: {
flake.modules.nixos.tux = {
imports = with inputs.self.modules.nixos;
with inputs.self.factory; [
development-tools
docker
];
};
}

View File

@@ -9,7 +9,6 @@
(autologin "weckyy702") (autologin "weckyy702")
development-tools
home-vpn home-vpn
opentablet opentablet

View File

@@ -0,0 +1,5 @@
{
flake.modules.nixos.tux = {
users.users.weckyy702.extraGroups = [ "docker" ];
};
}

View File

@@ -31,6 +31,8 @@
"sidebar.visibility" = "hide-sidebar"; "sidebar.visibility" = "hide-sidebar";
"browser.ctrlTab.sortByRecentlyUsed" = true;
"privacy.fingerprintingProtection" = true; "privacy.fingerprintingProtection" = true;
"privacy.globalprivacycontrol.was_ever_enabled" = true; "privacy.globalprivacycontrol.was_ever_enabled" = true;
"privacy.sanitize.clearOnShutdown.hasMigratedToNewPrefs3" = true; "privacy.sanitize.clearOnShutdown.hasMigratedToNewPrefs3" = true;

View File

@@ -1,9 +1,5 @@
{ inputs, ... }: { { inputs, ... }: {
flake.modules.nixos.development-tools = { pkgs, ... }: { flake.modules.nixos.development-tools = { pkgs, ... }: {
imports = with inputs.self.modules.nixos; [
rust
];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
cmake cmake
gnumake gnumake

View File

@@ -6,7 +6,7 @@
}; };
}; };
flake.modules.nixos.rust = { pkgs, ... }: { flake.modules.nixos.development-tools = { pkgs, ... }: {
nixpkgs.overlays = [ nixpkgs.overlays = [
inputs.rust-overlay.overlays.default inputs.rust-overlay.overlays.default
]; ];

View File

@@ -0,0 +1,8 @@
{
flake.modules.nixos.docker = {
virtualisation.docker = {
enable = true;
autoPrune.enable = true;
};
};
}