Compare commits
3 Commits
fc58b0ad29
...
25e647190b
| Author | SHA1 | Date | |
|---|---|---|---|
| 25e647190b | |||
| c942a482c2 | |||
| a802c85678 |
9
modules/hosts/tux/devtools.nix
Normal file
9
modules/hosts/tux/devtools.nix
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{ inputs, ... }: {
|
||||||
|
flake.modules.nixos.tux = {
|
||||||
|
imports = with inputs.self.modules.nixos;
|
||||||
|
with inputs.self.factory; [
|
||||||
|
development-tools
|
||||||
|
docker
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -9,7 +9,6 @@
|
|||||||
|
|
||||||
(autologin "weckyy702")
|
(autologin "weckyy702")
|
||||||
|
|
||||||
development-tools
|
|
||||||
home-vpn
|
home-vpn
|
||||||
opentablet
|
opentablet
|
||||||
|
|
||||||
|
|||||||
5
modules/hosts/tux/users/weckyy702/docker.nix
Normal file
5
modules/hosts/tux/users/weckyy702/docker.nix
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
flake.modules.nixos.tux = {
|
||||||
|
users.users.weckyy702.extraGroups = [ "docker" ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
];
|
];
|
||||||
|
|||||||
8
modules/programs/docker.nix
Normal file
8
modules/programs/docker.nix
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
flake.modules.nixos.docker = {
|
||||||
|
virtualisation.docker = {
|
||||||
|
enable = true;
|
||||||
|
autoPrune.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user