This commit is contained in:
nyanloutre 2024-09-06 01:25:27 +02:00
commit bfeb387fd4
4 changed files with 32 additions and 28 deletions

View File

@ -76,11 +76,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1722869614, "lastModified": 1725407940,
"narHash": "sha256-7ojM1KSk3mzutD7SkrdSflHXEujPvW1u7QuqWoTLXQU=", "narHash": "sha256-tiN5Rlg/jiY0tyky+soJZoRzLKbPyIdlQ77xVgREDNM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "883180e6550c1723395a3a342f830bfc5c371f6b", "rev": "6f6c45b5134a8ee2e465164811e451dcb5ad86e3",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -91,11 +91,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1722813957, "lastModified": 1725432240,
"narHash": "sha256-IAoYyYnED7P8zrBFMnmp7ydaJfwTnwcnqxUElC1I26Y=", "narHash": "sha256-+yj+xgsfZaErbfYM3T+QvEE2hU7UuE+Jf0fJCJ8uPS0=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "cb9a96f23c491c081b38eab96d22fa958043c9fa", "rev": "ad416d066ca1222956472ab7d0555a6946746a80",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -82,8 +82,10 @@
esphome esphome
]; ];
programs.wireshark.enable = true; programs = {
programs.wireshark.package = pkgs.wireshark; wireshark.enable = true;
alvr.enable = true;
};
networking.firewall.enable = false; networking.firewall.enable = false;

View File

@ -30,7 +30,6 @@
}) })
# Gestionnaires de version # Gestionnaires de version
gitMinimal
tig tig
gitAndTools.hub gitAndTools.hub
quilt quilt
@ -104,6 +103,8 @@
bash.interactiveShellInit = '' bash.interactiveShellInit = ''
eval "$(starship init bash)" eval "$(starship init bash)"
''; '';
git.enable = true;
}; };
environment.variables = let environment.variables = let

View File

@ -11,6 +11,7 @@
prismlauncher prismlauncher
lutris lutris
teamspeak_client teamspeak_client
ryujinx
betaflight-configurator betaflight-configurator
@ -61,7 +62,6 @@
glxinfo glxinfo
i7z i7z
appimage-run
pavucontrol pavucontrol
]; ];
@ -71,31 +71,26 @@
console.keyMap = "fr"; console.keyMap = "fr";
programs.steam.enable = true;
programs.firefox.enable = true;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
systemd.extraConfig = "DefaultLimitNOFILE=1048576"; systemd.extraConfig = "DefaultLimitNOFILE=1048576";
security.pam.loginLimits = [{
domain = "*"; security = {
type = "hard"; pam.loginLimits = [{
item = "nofile"; domain = "*";
value = "1048576"; type = "hard";
}]; item = "nofile";
value = "1048576";
}];
rtkit.enable = true;
};
programs = { programs = {
gnupg.agent = { enable = true; enableSSHSupport = true; }; gnupg.agent = { enable = true; enableSSHSupport = true; };
browserpass.enable = true; browserpass.enable = true;
steam.enable = true;
firefox.enable = true;
appimage.enable = true;
}; };
services = { services = {
@ -113,6 +108,12 @@
exportConfiguration = true; exportConfiguration = true;
desktopManager.plasma5.enable = true; desktopManager.plasma5.enable = true;
}; };
pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
udev.packages = with pkgs; [ ledger-udev-rules ]; udev.packages = with pkgs; [ ledger-udev-rules ];
pcscd.enable = true; pcscd.enable = true;
}; };