virtualization, update

This commit is contained in:
Till 2024-08-08 23:37:21 +02:00
parent 43979d0a82
commit 013b6572b8
4 changed files with 19 additions and 15 deletions

12
flake.lock generated
View file

@ -23,11 +23,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1722372011, "lastModified": 1722869614,
"narHash": "sha256-B2xRiC3NEJy/82ugtareBkRqEkPGpMyjaLxaR8LBxNs=", "narHash": "sha256-7ojM1KSk3mzutD7SkrdSflHXEujPvW1u7QuqWoTLXQU=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "cf05eeada35e122770c5c14add958790fcfcbef5", "rev": "883180e6550c1723395a3a342f830bfc5c371f6b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -39,11 +39,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1722597635, "lastModified": 1723152310,
"narHash": "sha256-ZEigaR68JrTWcrrcsRyfAJTvMz4qFIEw0ruHo6Iw0cs=", "narHash": "sha256-oDUl4xiYlxAhqF6IB1xmZgq3I760H1bmJHeHC9SFpF4=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nur", "repo": "nur",
"rev": "e7c0415da5a9c20fe57f7ccd70ff16fb26b66309", "rev": "6fcb8d8e3d7386392d7f0d92007f57ec357104b5",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -19,8 +19,8 @@
} }
./system ./system
./system/hardware-nova.nix ./system/hardware-nova.nix
# ./system/gnome.nix ./system/gnome.nix
./system/plasma.nix # ./system/plasma.nix
./system/btrbk.nix ./system/btrbk.nix
./system/yubikey.nix ./system/yubikey.nix
./system/alt.nix ./system/alt.nix

View file

@ -48,11 +48,14 @@
qbittorrent qbittorrent
nicotine-plus nicotine-plus
# other
quickemu
]; ];
imports = [ imports = [
./minimal.nix ./minimal.nix
# ./gnome ./gnome
./firefox.nix ./firefox.nix
./tex.nix ./tex.nix
./fonts.nix ./fonts.nix

View file

@ -24,8 +24,6 @@
allowedTCPPorts = [ 4000 ]; allowedTCPPorts = [ 4000 ];
}; };
services.opensnitch.enable = true;
time.timeZone = "Europe/Berlin"; time.timeZone = "Europe/Berlin";
i18n.extraLocaleSettings = { i18n.extraLocaleSettings = {
LC_TIME = "en_GB.UTF-8"; LC_TIME = "en_GB.UTF-8";
@ -47,7 +45,7 @@
enable = true; enable = true;
}; };
# sound.enable = true; # sound
hardware.pulseaudio.enable = false; hardware.pulseaudio.enable = false;
services.pipewire = { services.pipewire = {
enable = true; enable = true;
@ -57,12 +55,10 @@
}; };
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
nixpkgs.config.joypixels.acceptLicense = true;
programs.gnupg.agent = { programs.gnupg.agent = {
enable = true; enable = true;
pinentryPackage = pkgs.pinentry-curses; pinentryPackage = pkgs.pinentry-curses;
# enableSSHSupport = true;
}; };
programs.fish.enable = true; programs.fish.enable = true;
@ -86,10 +82,13 @@
pwgen pwgen
tree tree
unzip unzip
virt-manager # libguestfs
# guestfs-tools
virtiofsd
wget wget
]; ];
nixpkgs.config.joypixels.acceptLicense = true;
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
jetbrains-mono jetbrains-mono
joypixels joypixels
@ -98,12 +97,14 @@
services = { services = {
dbus.enable = true; dbus.enable = true;
openssh.enable = true; openssh.enable = true;
fwupd.enable = true;
printing.enable = true; printing.enable = true;
mullvad-vpn.enable = true; mullvad-vpn.enable = true;
mullvad-vpn.package = pkgs.mullvad-vpn; mullvad-vpn.package = pkgs.mullvad-vpn;
}; };
virtualisation.libvirtd.enable = true; virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
programs.dconf.enable = true; programs.dconf.enable = true;
system.stateVersion = "22.11"; system.stateVersion = "22.11";