Compare commits

...

10 Commits

Author SHA1 Message Date
Nathan McCarty 43eaa97cd8
Tweak recovery iso 2023-07-03 22:15:02 -04:00
Nathan McCarty 5ad8f524d8
Add bigssd luks setup 2023-07-03 21:56:26 -04:00
Nathan McCarty 5d83b1f30e
Enable ZFS 2023-07-03 21:14:35 -04:00
Nathan McCarty 0883930abe
Fix networking 2023-07-03 21:14:21 -04:00
Nathan McCarty 12c5f518ec
dhcp 2023-07-03 20:36:06 -04:00
Nathan McCarty ed07847d4c
hyprland tweak 2023-07-03 20:22:10 -04:00
Nathan McCarty b251397b6d
Bridge 2023-07-03 20:16:37 -04:00
Nathan McCarty a34134d4b0
tweak 2023-07-03 20:12:19 -04:00
Nathan McCarty fbefd0e81b
dhcp 2023-07-03 19:56:18 -04:00
Nathan McCarty 83669e037e
Levitation installation tweaks 2023-07-03 19:56:18 -04:00
6 changed files with 259 additions and 215 deletions

View File

@ -214,12 +214,19 @@
]; ];
}; };
# Installer iso # Installer/rescue iso
iso_x86_64 = nixpkgs.lib.nixosSystem { iso_x86_64 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-plasma5.nix" "${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-plasma5.nix"
"${nixpkgs}/nixos/modules/installer/cd-dvd/channel.nix" "${nixpkgs}/nixos/modules/installer/cd-dvd/channel.nix"
({ pkgs, lib, config, ... }: {
boot.supportedFilesystems = [ "zfs" ];
boot.zfs.forceImportRoot = false;
# Generated with head -c4 /dev/urandom | od -A none -t x4
networking.hostId = "9affdaa4";
environment.systemPackages = with pkgs; [ ];
})
]; ];
}; };
}; };

View File

@ -34,245 +34,248 @@ in with lib; {
recommendedEnvironment = true; recommendedEnvironment = true;
systemdIntegration = false; systemdIntegration = false;
extraConfig = '' extraConfig = ''
# Set environment variables to force wayland # Set environment variables to force wayland
env = XCURSOR_SIZE,24 env = XCURSOR_SIZE,24
env = GDK_BACKEND,wayland,x11 # env = GDK_BACKEND,wayland,x11
env = QT_QPA_PLATFORM,wayland;xcb # env = QT_QPA_PLATFORM,wayland;xcb
env = SDL_VIDEODRIVER,wayland # env = SDL_VIDEODRIVER,wayland
env = CLUTTER_BACKEND,wayland # env = CLUTTER_BACKEND,wayland
input { input {
kb_layout = us kb_layout = us
kb_variant = kb_variant =
kb_model = kb_model =
kb_options = kb_options =
kb_rules = kb_rules =
follow_mouse = 1 follow_mouse = 1
} }
general { general {
# See https://wiki.hyprland.org/Configuring/Variables/ for more # See https://wiki.hyprland.org/Configuring/Variables/ for more
gaps_in = 5 gaps_in = 5
gaps_out = 10 gaps_out = 10
border_size = 3 border_size = 3
col.active_border = rgba(3fc5b7ee) rgba(70b433ee) 45deg col.active_border = rgba(3fc5b7ee) rgba(70b433ee) 45deg
col.inactive_border = rgba(252525aa) col.inactive_border = rgba(252525aa)
layout = dwindle layout = dwindle
} }
decoration { decoration {
rounding = 10 rounding = 10
blur = true blur = true
blur_size = 3 blur_size = 3
blur_passes = 1 blur_passes = 1
blur_new_optimizations = true blur_new_optimizations = true
drop_shadow = true drop_shadow = true
shadow_range = 4 shadow_range = 4
shadow_render_power = 3 shadow_render_power = 3
col.shadow = rgba(181818ee) col.shadow = rgba(181818ee)
} }
animations { animations {
enabled = true; enabled = true;
bezier = myBezier, 0.05, 0.9, 0.1, 1.05 bezier = myBezier, 0.05, 0.9, 0.1, 1.05
animation = windows, 1, 7, myBezier animation = windows, 1, 7, myBezier
animation = windowsOut, 1, 7, default, popin 80% animation = windowsOut, 1, 7, default, popin 80%
animation = border, 1, 10, default animation = border, 1, 10, default
animation = borderangle, 1, 8, default animation = borderangle, 1, 8, default
animation = fade, 1, 7, default animation = fade, 1, 7, default
animation = workspaces, 1, 6, default animation = workspaces, 1, 6, default
} }
dwindle { dwindle {
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more # See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
pseudotile = true # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below pseudotile = true # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
preserve_split = true # you probably want this preserve_split = true # you probably want this
} }
master { master {
new_is_master = false new_is_master = false
} }
gestures { gestures {
workspace_swipe = false workspace_swipe = false
} }
bind = SUPER, Q, exec, alacritty bind = SUPER, Q, exec, alacritty
bind = SUPER, C, killactive, bind = SUPER, C, killactive,
# bind = SUPER, M, exit, # bind = SUPER, M, exit,
bind = SUPER, E, exec, dolphin bind = SUPER, E, exec, dolphin
bind = SUPER, V, togglefloating, bind = SUPER, V, togglefloating,
bind = SUPER, P, pseudo, # dwindle bind = SUPER, P, pseudo, # dwindle
bind = SUPER, B, togglesplit, # dwindle bind = SUPER, B, togglesplit, # dwindle
# Maximize # Maximize
bind = SUPER, A, fullscreen, 1 bind = SUPER, A, fullscreen, 1
bind = SUPER SHIFT, A, fullscreen, 0 bind = SUPER SHIFT, A, fullscreen, 0
# Move focus with mainMod + arrow keys # Move focus with mainMod + arrow keys
bind = SUPER, H, movefocus, l bind = SUPER, H, movefocus, l
bind = SUPER, L, movefocus, r bind = SUPER, L, movefocus, r
bind = SUPER, K, movefocus, u bind = SUPER, K, movefocus, u
bind = SUPER, K, layoutmsg, focusnext bind = SUPER, K, layoutmsg, focusnext
bind = SUPER, J, movefocus, d bind = SUPER, J, movefocus, d
bind = SUPER, J, layoutmsg, focusprev bind = SUPER, J, layoutmsg, focusprev
# Move windows with mainMod + arrow keys # Move windows with mainMod + arrow keys
bind = SUPER SHIFT, H, movewindow, l bind = SUPER SHIFT, H, movewindow, l
bind = SUPER SHIFT, L, movewindow, r bind = SUPER SHIFT, L, movewindow, r
bind = SUPER SHIFT, K, movewindow, u bind = SUPER SHIFT, K, movewindow, u
bind = SUPER SHIFT, K, layoutmsg, swapnext bind = SUPER SHIFT, K, layoutmsg, swapnext
bind = SUPER SHIFT, J, movewindow, d bind = SUPER SHIFT, J, movewindow, d
bind = SUPER SHIFT, J, layoutmsg, swapprev bind = SUPER SHIFT, J, layoutmsg, swapprev
# Switch layouts with a mode # Switch layouts with a mode
bind = SUPER, S, submap, layout bind = SUPER, S, submap, layout
submap=layout submap=layout
# dwindle # dwindle
bind = , A, exec, hyprctl keyword general:layout dwindle bind = , A, exec, hyprctl keyword general:layout dwindle
bind = , A, submap, reset bind = , A, submap, reset
# master # master
bind = , S, exec, hyprctl keyword general:layout master bind = , S, exec, hyprctl keyword general:layout master
bind = , S, submap, reset bind = , S, submap, reset
submap = reset submap = reset
# Switch workspaces with mainMod + [0-9] # Switch workspaces with mainMod + [0-9]
bind = SUPER, 1, workspace, 1 bind = SUPER, 1, workspace, 1
bind = SUPER, 2, workspace, 2 bind = SUPER, 2, workspace, 2
bind = SUPER, 3, workspace, 3 bind = SUPER, 3, workspace, 3
bind = SUPER, 4, workspace, 4 bind = SUPER, 4, workspace, 4
bind = SUPER, 5, workspace, 5 bind = SUPER, 5, workspace, 5
bind = SUPER, 6, workspace, 6 bind = SUPER, 6, workspace, 6
bind = SUPER, 7, workspace, 7 bind = SUPER, 7, workspace, 7
bind = SUPER, 8, workspace, 8 bind = SUPER, 8, workspace, 8
bind = SUPER, 9, workspace, 9 bind = SUPER, 9, workspace, 9
bind = SUPER, 0, workspace, 10 bind = SUPER, 0, workspace, 10
# Move active window to a workspace with mainMod + SHIFT + [0-9] # Move active window to a workspace with mainMod + SHIFT + [0-9]
bind = SUPER SHIFT, 1, movetoworkspace, 1 bind = SUPER SHIFT, 1, movetoworkspace, 1
bind = SUPER SHIFT, 2, movetoworkspace, 2 bind = SUPER SHIFT, 2, movetoworkspace, 2
bind = SUPER SHIFT, 3, movetoworkspace, 3 bind = SUPER SHIFT, 3, movetoworkspace, 3
bind = SUPER SHIFT, 4, movetoworkspace, 4 bind = SUPER SHIFT, 4, movetoworkspace, 4
bind = SUPER SHIFT, 5, movetoworkspace, 5 bind = SUPER SHIFT, 5, movetoworkspace, 5
bind = SUPER SHIFT, 6, movetoworkspace, 6 bind = SUPER SHIFT, 6, movetoworkspace, 6
bind = SUPER SHIFT, 7, movetoworkspace, 7 bind = SUPER SHIFT, 7, movetoworkspace, 7
bind = SUPER SHIFT, 8, movetoworkspace, 8 bind = SUPER SHIFT, 8, movetoworkspace, 8
bind = SUPER SHIFT, 9, movetoworkspace, 9 bind = SUPER SHIFT, 9, movetoworkspace, 9
bind = SUPER SHIFT, 0, movetoworkspace, 10 bind = SUPER SHIFT, 0, movetoworkspace, 10
# Scroll through existing workspaces with mainMod + scroll # Scroll through existing workspaces with mainMod + scroll
bind = SUPER, mouse_down, workspace, e+1 bind = SUPER, mouse_down, workspace, e+1
bind = SUPER, mouse_up, workspace, e-1 bind = SUPER, mouse_up, workspace, e-1
# Move/resize windows with mainMod + LMB/RMB and dragging # Move/resize windows with mainMod + LMB/RMB and dragging
bindm = SUPER, mouse:272, movewindow bindm = SUPER, mouse:272, movewindow
bindm = SUPER, mouse:273, resizewindow bindm = SUPER, mouse:273, resizewindow
# Media key binds # Media key binds
bind = , xf86audioraisevolume, exec, swayosd --output-volume=raise bind = , xf86audioraisevolume, exec, swayosd --output-volume=raise
bind = SHIFT, xf86audioraisevolume, exec, swayosd --output-volume=+2 bind = SHIFT, xf86audioraisevolume, exec, swayosd --output-volume=+2
bind = , xf86audiolowervolume, exec, swayosd --output-volume=lower bind = , xf86audiolowervolume, exec, swayosd --output-volume=lower
bind = SHIFT, xf86audiolowervolume, exec, swayosd --output-volume=-2 bind = SHIFT, xf86audiolowervolume, exec, swayosd --output-volume=-2
bind = , xf86audiomute, exec, swayosd --output-volume mute-toggle bind = , xf86audiomute, exec, swayosd --output-volume mute-toggle
bind = , xf86audioplay, exec, playerctl play-pause bind = , xf86audioplay, exec, playerctl play-pause
bind = , xf86audionext, exec, playerctl next bind = , xf86audionext, exec, playerctl next
# Screenshots # Screenshots
bind = , print, exec, grimblast --scale 1 copysave area ~/Pictures/Screenshots/$(date -Iseconds).png bind = , print, exec, grimblast --scale 1 copysave area ~/Pictures/Screenshots/$(date -Iseconds).png
bind = SHIFT, print, exec, grimblast --scale 1 copysave output ~/Pictures/Screenshots/$(date -Iseconds).png bind = SHIFT, print, exec, grimblast --scale 1 copysave output ~/Pictures/Screenshots/$(date -Iseconds).png
# Caps lock indicator # Caps lock indicator
bindr = CAPS, caps_lock, exec, swayosd --caps-lock bindr = CAPS, caps_lock, exec, swayosd --caps-lock
# systemd integration # systemd integration
exec-once=dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY HYPRLAND_INSTANCE_SIGNATURE XDG_CURRENT_DESKTOP && sleep 2 && systemctl --user start hyprland-session.target exec-once=dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY HYPRLAND_INSTANCE_SIGNATURE XDG_CURRENT_DESKTOP && sleep 2 && systemctl --user start hyprland-session.target
## Window rules ## Window rules
# Gamescope - vmware # Gamescope - vmware
windowrulev2 = float,class:^(.gamescope-wrapped)$,title:VMware Workstation windowrulev2 = float,class:^(.gamescope-wrapped)$,title:VMware Workstation
windowrulev2 = noborder,class:^(.gamescope-wrapped)$,title:VMware Workstation windowrulev2 = noborder,class:^(.gamescope-wrapped)$,title:VMware Workstation
windowrulev2 = rounding 0,class:^(.gamescope-wrapped)$,title:VMware Workstation windowrulev2 = rounding 0,class:^(.gamescope-wrapped)$,title:VMware Workstation
# Bluetooth manager # Bluetooth manager
windowrulev2 = float,class:^(.blueman-manager-wrapped)$ windowrulev2 = float,class:^(.blueman-manager-wrapped)$
windowrulev2 = center,class:^(.blueman-manager-wrapped)$ windowrulev2 = center,class:^(.blueman-manager-wrapped)$
# firefox Picture-in-Picture # firefox Picture-in-Picture
windowrulev2 = nofullscreenrequest,class^(firefox-beta)$,title:^(Picture-in-Picture)$ windowrulev2 = nofullscreenrequest,class^(firefox-beta)$,title:^(Picture-in-Picture)$
windowrulev2 = float,class^(firefox-beta)$,title:^(Picture-in-Picture)$ windowrulev2 = float,class^(firefox-beta)$,title:^(Picture-in-Picture)$
windowrulev2 = pin,class^(firefox-beta)$,title:^(Picture-in-Picture)$ windowrulev2 = pin,class^(firefox-beta)$,title:^(Picture-in-Picture)$
# firefox bitwarden # firefox bitwarden
windowrulev2 = nofullscreenrequest,class^(firefox-beta)$,title:^(Extension: Bitwarden) windowrulev2 = nofullscreenrequest,class^(firefox-beta)$,title:^(Extension: Bitwarden)
windowrulev2 = float,class^(firefox-beta)$,title:^(Extension: Bitwarden) windowrulev2 = float,class^(firefox-beta)$,title:^(Extension: Bitwarden)
windowrulev2 = pin,class^(firefox-beta)$,title:^(Extension: Bitwarden) windowrulev2 = pin,class^(firefox-beta)$,title:^(Extension: Bitwarden)
# firefox figma micro indicator # firefox figma micro indicator
windowrulev2 = nofullscreenrequest,class^(firefox-beta)$,title:^(Firefox Sharing Indicator)$ windowrulev2 = nofullscreenrequest,class^(firefox-beta)$,title:^(Firefox Sharing Indicator)$
windowrulev2 = float,class^(firefox-beta)$,title:^(Firefox Sharing Indicator)$ windowrulev2 = float,class^(firefox-beta)$,title:^(Firefox Sharing Indicator)$
# Common modals # Common modals
windowrule = float,title:^(Open)$ windowrule = float,title:^(Open)$
windowrule = center,title:^(Open)$ windowrule = center,title:^(Open)$
windowrule = float,title:^(Choose Files)$ windowrule = float,title:^(Choose Files)$
windowrule = center,title:^(Choose Files)$ windowrule = center,title:^(Choose Files)$
windowrule = float,title:^(Save As)$ windowrule = float,title:^(Save As)$
windowrule = center,title:^(Save As)$ windowrule = center,title:^(Save As)$
windowrule = float,title:^(Confirm to replace files)$ windowrule = float,title:^(Confirm to replace files)$
windowrule = center,title:^(Confirm to replace files)$ windowrule = center,title:^(Confirm to replace files)$
windowrule = float,title:^(File Operation Progress)$ windowrule = float,title:^(File Operation Progress)$
windowrule = center,title:^(File Operation Progress)$ windowrule = center,title:^(File Operation Progress)$
windowrulev2 = float,class:^(google-chrome)$,title:^(Open Files)$ windowrulev2 = float,class:^(google-chrome)$,title:^(Open Files)$
windowrulev2 = center,class:^(google-chrome)$,title:^(Open Files)$ windowrulev2 = center,class:^(google-chrome)$,title:^(Open Files)$
windowrulev2 = float,class:^(google-chrome)$,title:^(Open File)$ windowrulev2 = float,class:^(google-chrome)$,title:^(Open File)$
windowrulev2 = center,class:^(google-chrome)$,title:^(Open File)$ windowrulev2 = center,class:^(google-chrome)$,title:^(Open File)$
# Pavucontrol # Pavucontrol
windowrule = center,pavucontrol windowrule = center,pavucontrol
windowrule = float,pavucontrol windowrule = float,pavucontrol
# Emacs streaming # Emacs streaming
windowrulev2 = float,title:^(emacs-streaming)$ windowrulev2 = float,title:^(emacs-streaming)$
## Scratchpads ## Scratchpads
# Alacritty # Alacritty
bind = SUPER ALT, Q, exec, pypr toggle term bind = SUPER ALT, Q, exec, pypr toggle term
$dropterm = ^(alacritty-dropterm)$ $dropterm = ^(alacritty-dropterm)$
windowrule = float,$dropterm windowrule = float,$dropterm
windowrule = size 40% 50%,$dropterm windowrule = size 40% 50%,$dropterm
windowrule = workspace special silent,$dropterm windowrule = workspace special silent,$dropterm
windowrule = center,$dropterm windowrule = center,$dropterm
# Emacs # Emacs
bind = SUPER ALT, W, exec, pypr toggle emacs bind = SUPER ALT, W, exec, pypr toggle emacs
$scratchmacs = title:^(scratchmacs)$ $scratchmacs = title:^(scratchmacs)$
windowrulev2 = float,$scratchmacs windowrulev2 = float,$scratchmacs
windowrulev2 = size 40% 50%,$scratchmacs windowrulev2 = size 40% 50%,$scratchmacs
windowrulev2 = workspace special silent,$scratchmacs windowrulev2 = workspace special silent,$scratchmacs
windowrulev2 = center,$scratchmacs windowrulev2 = center,$scratchmacs
# Ario # Ario
bind = SUPER ALT, E, exec, pypr toggle ario bind = SUPER ALT, E, exec, pypr toggle ario
$dropario = class:^(ario)$ $dropario = class:^(ario)$
windowrulev2 = float,$dropario windowrulev2 = float,$dropario
windowrulev2 = size 50% 70%,$dropario windowrulev2 = size 50% 70%,$dropario
windowrulev2 = workspace special silent,$dropario windowrulev2 = workspace special silent,$dropario
windowrulev2 = center,$dropario windowrulev2 = center,$dropario
# Spotify # Spotify
bind = SUPER ALT, R, exec, pypr toggle spotify bind = SUPER ALT, R, exec, pypr toggle spotify
$dropspotify = title:^(Spotify)$ $dropspotify = title:^(Spotify)$
windowrulev2 = float,$dropspotify windowrulev2 = float,$dropspotify
windowrulev2 = size 50% 70%,$dropspotify windowrulev2 = size 50% 70%,$dropspotify
windowrulev2 = workspace special silent,$dropspotify windowrulev2 = workspace special silent,$dropspotify
windowrulev2 = center,$dropspotify windowrulev2 = center,$dropspotify
## Global keybinds ## Global keybinds
# OBS # OBS
bind = SHIFT, F10, pass,^(com\.obsproject\.Studio)$ bind = SHIFT, F10, pass,^(com\.obsproject\.Studio)$
bind = SHIFT, F11, pass,^(com\.obsproject\.Studio)$ bind = SHIFT, F11, pass,^(com\.obsproject\.Studio)$
# Start polkit agent
exec-once = systemctl --user start plasma-polkit-agent.service
''; '';
}; };

View File

@ -58,21 +58,15 @@ in {
docker = false; docker = false;
podman = true; podman = true;
}; };
windows = { windows = { enable = false; };
enable = false;
mount = {
device = "/dev/nvme0n1p2";
mountPoint = "/mnt/windows";
keyFile = config.sops.secrets."windows-bitlocker-key".path;
};
};
}; };
}; };
# Configure networking # Configure networking
networking = { networking = {
domain = "mccarty.io"; domain = "mccarty.io";
useDHCP = true; useDHCP = true;
nat.externalInterface = "enp5s0"; interfaces.enp6s0.useDHCP = true;
nat.externalInterface = "enp6s0";
# Open ports for soulseek and weylus # Open ports for soulseek and weylus
firewall = { firewall = {
allowedTCPPorts = [ 61377 1701 9001 ]; allowedTCPPorts = [ 61377 1701 9001 ];
@ -100,4 +94,10 @@ in {
enable = true; enable = true;
package = unstable.vmware-workstation; package = unstable.vmware-workstation;
}; };
# ZFS
boot.supportedFilesystems = [ "zfs" ];
boot.zfs.forceImportRoot = false;
# Generated with head -c4 /dev/urandom | od -A none -t x4
networking.hostId = "bc94e9d3";
} }

View File

@ -53,18 +53,29 @@
fileSystems."/home/nathan/Music" = { fileSystems."/home/nathan/Music" = {
device = "10.0.0.139:/mnt/tank/root/nathan/music"; device = "10.0.0.139:/mnt/tank/root/nathan/music";
fsType = "nfs"; fsType = "nfs";
options = [ "x-systemd.automount" "noauto" ];
}; };
fileSystems."/mnt/general" = { fileSystems."/mnt/general" = {
device = "10.0.0.139:/mnt/tank/root/shares/general"; device = "10.0.0.139:/mnt/tank/root/shares/general";
fsType = "nfs"; fsType = "nfs";
options = [ "x-systemd.automount" "noauto" ];
}; };
fileSystems."/mnt/archive" = { fileSystems."/mnt/archive" = {
device = "10.0.0.139:/mnt/tank/root/shares/archive"; device = "10.0.0.139:/mnt/tank/root/shares/archive";
fsType = "nfs"; fsType = "nfs";
options = [ "x-systemd.automount" "noauto" ];
}; };
fileSystems."/mnt/books" = { fileSystems."/mnt/books" = {
device = "10.0.0.139:/mnt/tank/root/data/books"; device = "10.0.0.139:/mnt/tank/root/data/books";
fsType = "nfs"; fsType = "nfs";
options = [ "x-systemd.automount" "noauto" ];
};
environment.etc.crypttab = {
enable = true;
text = ''
crypt-bigssd UUID=751c00cb-32ed-4aa9-83f6-5d65955480a5 /var/big-ssd-keyfile luks
'';
}; };
swapDevices = [{ swapDevices = [{

View File

@ -8,6 +8,9 @@ let
"10de:1ad9" # Usb ???? "10de:1ad9" # Usb ????
]; ];
in { in {
##
## Kernel configuration
##
boot = { boot = {
kernelParams = [ kernelParams = [
# enable iommu # enable iommu
@ -19,17 +22,37 @@ in {
initrd.kernelModules = [ "vfio_pci" "vfio" "vfio_iommu_type1" ]; initrd.kernelModules = [ "vfio_pci" "vfio" "vfio_iommu_type1" ];
}; };
##
## Virtualization setup
##
environment.systemPackages = with pkgs; [ looking-glass-client ]; environment.systemPackages = with pkgs; [ looking-glass-client ];
virtualisation.spiceUSBRedirection.enable = true; virtualisation.spiceUSBRedirection.enable = true;
virtualisation.libvirtd = { virtualisation.libvirtd = {
qemu = { qemu = {
# Enable tpm for windows 11
swtpm.enable = true; swtpm.enable = true;
ovmf = { ovmf = {
enable = true; enable = true;
# Needed for secure boot
packages = [ pkgs.OVMFFull.fd ]; packages = [ pkgs.OVMFFull.fd ];
}; };
}; };
}; };
# Looking glass shared memory
systemd.tmpfiles.rules = systemd.tmpfiles.rules =
[ "f /dev/shm/looking-glass 0660 nathan qemu-libvirtd -" ]; [ "f /dev/shm/looking-glass 0660 nathan qemu-libvirtd -" ];
##
## Networking
##
# Setup bridge
networking.bridges = { "qemu-br0" = { interfaces = [ "enp6s0" ]; }; };
networking.interfaces.qemu-br0 = {
ipv4.addresses = [{
address = "10.0.0.247";
prefixLength = 21;
}];
};
networking.defaultGateway = "10.0.4.1";
networking.nameservers = [ "10.0.0.10" ];
} }

View File

@ -23,7 +23,7 @@ in with lib; {
# Turn on GDM for login # Turn on GDM for login
services.xserver = { services.xserver = {
enable = true; enable = true;
autorun = true; autorun = false;
# Enable plasma for the applications # Enable plasma for the applications
desktopManager.plasma5.enable = true; desktopManager.plasma5.enable = true;
displayManager.defaultSession = "hyprland"; displayManager.defaultSession = "hyprland";