This commit is contained in:
Martin Benonisen 2024-12-01 12:56:28 +01:00
parent de74a23970
commit 9e6943c72d
Signed by: mbeno
SSH Key Fingerprint: SHA256:iAzOA1WUAxocdh/WRWXcSg5nw2dJ1aDCvPuT+3ZjkwI
5 changed files with 28 additions and 18 deletions

20
flake.lock generated
View File

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1732025103, "lastModified": 1733045511,
"narHash": "sha256-qjEI64RKvDxRyEarY0jTzrZMa8ebezh2DEZmJJrpVdo=", "narHash": "sha256-n8AldXJRNVMm2UZ6yN0HwVxlARY2Cm/uhdOw76tQ0OI=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "a46e702093a5c46e192243edbd977d5749e7f294", "rev": "4964f3c6fc17ae4578e762d3dc86b10fe890860e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -23,11 +23,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1732014248, "lastModified": 1732837521,
"narHash": "sha256-y/MEyuJ5oBWrWAic/14LaIr/u5E0wRVzyYsouYY3W6w=", "narHash": "sha256-jNRNr49UiuIwaarqijgdTR2qLPifxsVhlJrKzQ8XUIE=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "23e89b7da85c3640bbc2173fe04f4bd114342367", "rev": "970e93b9f82e2a0f3675757eb0bfc73297cc6370",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -52,11 +52,11 @@
}, },
"locked": { "locked": {
"dir": "packaging/nix", "dir": "packaging/nix",
"lastModified": 1731893168, "lastModified": 1733037609,
"narHash": "sha256-nijDZdYKT9UWF+kMgM3lq1OkbFKvDs6JXKRXI8cpprE=", "narHash": "sha256-HkS24indfMaQbVZ+9GY5BHc+rqPvh8htF0rWYhvgPKI=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "9f580b251ca66950bb436c09afd2b9585eed74ba", "rev": "e559e2e50999093c3e837d33886f9e14e34ead0a",
"revCount": 840, "revCount": 863,
"submodules": true, "submodules": true,
"type": "git", "type": "git",
"url": "https://github.com/Open-Wine-Components/umu-launcher/?dir=packaging/nix" "url": "https://github.com/Open-Wine-Components/umu-launcher/?dir=packaging/nix"

View File

@ -23,7 +23,10 @@
"vm.max_map_count" = 2147483642; "vm.max_map_count" = 2147483642;
"fs.file-max" = 524288; "fs.file-max" = 524288;
}; };
networking.extraHosts =
''
127.0.0.1 zedd zedd.local
'';
networking.hostName = "zedd"; # Define your hostname. networking.hostName = "zedd"; # Define your hostname.

View File

@ -3,7 +3,6 @@
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
fira-code fira-code
fira-code-symbols fira-code-symbols
nerdfonts
noto-fonts noto-fonts
noto-fonts-cjk-sans noto-fonts-cjk-sans
noto-fonts-emoji noto-fonts-emoji

View File

@ -7,11 +7,20 @@
]; ];
programs.steam = { programs.steam = {
enable = true; enable = true;
extraPackages = [
extraCompatPackages = [ pkgs.mangohud
pkgs.proton-ge-bin
]; ];
package = pkgs.steam.override {
extraLibraries = pkgs: [
pkgs.mangohud
];
extraEnv = {
MANGOHUD=true;
};
};
}; };
programs.thunar.enable = true; programs.thunar.enable = true;
programs.gnupg.agent = { programs.gnupg.agent = {
@ -31,6 +40,7 @@
(inputs.umu.packages.${pkgs.system}.umu.override { version = "${inputs.umu.shortRev}"; }) (inputs.umu.packages.${pkgs.system}.umu.override { version = "${inputs.umu.shortRev}"; })
gfxreconstruct gfxreconstruct
glslang glslang
(opera.override { proprietaryCodecs = true; })
spirv-cross spirv-cross
spirv-headers spirv-headers
spirv-tools spirv-tools

View File

@ -14,9 +14,7 @@
firewall = { firewall = {
enable = true; enable = true;
allowedTCPPorts = [ 22 ]; allowedTCPPorts = [ 22 ];
extraCommands = '' extraCommands = "iptables -A INPUT -s 192.168.0.0/16 -j ACCEPT";
iptables -A INPUT --source 192.168.0.0/16 -j ACCEPT
'';
}; };
}; };