mirror of
https://github.com/materusPL/nixos-config
synced 2026-07-02 04:36:41 +00:00
flake: update lock, update things to new lock
This commit is contained in:
@@ -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 = {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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" ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user