flake: update lock, update things to new lock

This commit is contained in:
2024-05-01 12:38:15 +02:00
parent 400dadba7f
commit e901f042fb
6 changed files with 70 additions and 69 deletions
@@ -10,11 +10,12 @@
enableTerminal = lib.mkDefault true;
enableTerminalExtra = lib.mkDefault true;
enableNixDevel = lib.mkDefault true;
bash.enable = true;
zsh.enable = true;
};
home.packages = [
pkgs.papirus-icon-theme
(materusArg.pkgs.polymc.wrap { extraJDKs = [ pkgs.graalvm-ce ]; })
@@ -86,6 +86,7 @@
materusArg.pkgs.ffmpeg6-amf-full
(materusArg.pkgs.polymc.wrap { extraJDKs = [ pkgs.graalvm-ce ]; extraLibs = [ ]; })
pkgs.git-crypt
pkgs.obsidian
];
programs.obs-studio = {
+5 -5
View File
@@ -12,11 +12,11 @@
networking.firewall.enable = true;
networking.firewall.allowedTCPPorts = [ 24800 5900 5357 4656 8080 9943 9944 ];
networking.firewall.allowedUDPPorts = [ 24800 5900 3702 4656 6000 9943 9944 ];
#Fix warning
networking.networkmanager.extraConfig = lib.mkDefault ''
[connectivity]
uri=http://nmcheck.gnome.org/check_network_status.txt
'';
networking.networkmanager.settings = {
connectivity = {
uri = "http://nmcheck.gnome.org/check_network_status.txt";
};
};
networking.networkmanager.ensureProfiles.environmentFiles = [
config.sops.templates."networkmanager.env".path
@@ -34,7 +34,6 @@ with materusArg.pkgs.lib;
tdesktop
mpv
ani-cli
obsidian
nextcloud-client
spotify
thunderbird
+2 -2
View File
@@ -1,4 +1,4 @@
{ config, pkgs, lib, materusArg, ... }:
{ config, pkgs, lib, materusArg, materusCfg, ... }:
let
cfg = config.materus.profile.nix;
in
@@ -7,7 +7,7 @@ in
config.nix = lib.mkIf cfg.enable {
settings = {
experimental-features = [ "nix-command" "flakes" "repl-flake" "no-url-literals" ];
experimental-features = lib.mkMerge [[ "nix-command" "flakes" "no-url-literals" ] (lib.mkIf (materusCfg.stable) ["repl-flake"])];
auto-optimise-store = true;
trusted-users = [ "root" "@wheel" ];