|
24 | 24 | ./hardware-configuration.nix |
25 | 25 | #./hardware-graphics.nix |
26 | 26 | ./sysctl.nix |
27 | | - ./wireless_desktop.nix |
| 27 | + #./wireless_desktop.nix |
28 | 28 | ./locale.nix |
29 | 29 | ./hosts.nix |
30 | 30 | ./firewall.nix |
|
40 | 40 | ./docker-daemon.nix |
41 | 41 | #./smokeping.nix |
42 | 42 | #./distributed-builds.nix |
43 | | - ./hyprland.nix |
44 | | - ./hostapd.nix |
| 43 | + #./hyprland.nix |
| 44 | + #./hostapd.nix |
| 45 | + ./hostapd-multi.nix |
45 | 46 | ]; |
46 | 47 |
|
47 | 48 | boot = { |
|
141 | 142 | # # https://nixos.wiki/wiki/NixOS_Wiki:Audio |
142 | 143 | # services.pulseaudio.enable = false; # Use Pipewire, the modern sound subsystem |
143 | 144 |
|
144 | | - security.rtkit.enable = true; # Enable RealtimeKit for audio purposes |
| 145 | + # security.rtkit.enable = true; # Enable RealtimeKit for audio purposes |
145 | 146 |
|
146 | | - services.pipewire = { |
147 | | - enable = true; |
148 | | - alsa.enable = true; |
149 | | - alsa.support32Bit = true; |
150 | | - pulse.enable = true; |
151 | | - # Uncomment the following line if you want to use JACK applications |
152 | | - # jack.enable = true; |
153 | | - }; |
| 147 | + # services.pipewire = { |
| 148 | + # enable = true; |
| 149 | + # alsa.enable = true; |
| 150 | + # alsa.support32Bit = true; |
| 151 | + # pulse.enable = true; |
| 152 | + # # Uncomment the following line if you want to use JACK applications |
| 153 | + # # jack.enable = true; |
| 154 | + # }; |
154 | 155 |
|
155 | 156 | services.openssh.enable = true; |
156 | 157 | programs.ssh.extraConfig = '' |
|
176 | 177 | # services.libinput.enable = true; |
177 | 178 |
|
178 | 179 | # https://nixos.wiki/wiki/Printing |
179 | | - services.printing.enable = true; |
| 180 | + #services.printing.enable = true; |
180 | 181 |
|
181 | 182 | # https://wiki.nixos.org/wiki/Flameshot |
182 | 183 | # services.flameshot = { |
|
222 | 223 | enableSSHSupport = true; |
223 | 224 | }; |
224 | 225 |
|
225 | | - hardware.graphics = { |
226 | | - enable = true; # auto includes mesa |
227 | | - package = pkgs.mesa; |
228 | | - extraPackages = with pkgs; [ |
229 | | - libglvnd |
230 | | - libva-vdpau-driver |
231 | | - libvdpau-va-gl |
232 | | - rocmPackages.clr.icd |
233 | | - ]; |
234 | | - }; |
235 | | - services.xserver = { |
236 | | - enable = true; |
237 | | - videoDrivers = [ "amdgpu" ]; |
238 | | - xkb = { |
239 | | - layout = "us"; |
240 | | - variant = ""; |
241 | | - }; |
242 | | - }; |
| 226 | + # hardware.graphics = { |
| 227 | + # enable = true; # auto includes mesa |
| 228 | + # package = pkgs.mesa; |
| 229 | + # extraPackages = with pkgs; [ |
| 230 | + # libglvnd |
| 231 | + # libva-vdpau-driver |
| 232 | + # libvdpau-va-gl |
| 233 | + # rocmPackages.clr.icd |
| 234 | + # ]; |
| 235 | + # }; |
| 236 | + # services.xserver = { |
| 237 | + # enable = true; |
| 238 | + # videoDrivers = [ "amdgpu" ]; |
| 239 | + # xkb = { |
| 240 | + # layout = "us"; |
| 241 | + # variant = ""; |
| 242 | + # }; |
| 243 | + # }; |
243 | 244 |
|
244 | | - services.desktopManager.gnome.enable = true; |
245 | | - services.displayManager.gdm.enable = true; |
| 245 | + # services.desktopManager.gnome.enable = true; |
| 246 | + # services.displayManager.gdm.enable = true; |
246 | 247 |
|
247 | | - # https://nixos.wiki/wiki/AMD_GPU |
248 | | - systemd.tmpfiles.rules = [ |
249 | | - "L+ /opt/rocm/hip - - - - ${pkgs.rocmPackages.clr}" |
250 | | - ]; |
251 | | - systemd.services.lactd.wantedBy = [ "multi-user.target" ]; |
| 248 | + # # https://nixos.wiki/wiki/AMD_GPU |
| 249 | + # systemd.tmpfiles.rules = [ |
| 250 | + # "L+ /opt/rocm/hip - - - - ${pkgs.rocmPackages.clr}" |
| 251 | + # ]; |
| 252 | + # systemd.services.lactd.wantedBy = [ "multi-user.target" ]; |
252 | 253 |
|
253 | | - xdg.portal = { |
254 | | - enable = true; |
255 | | - extraPortals = with pkgs; [ xdg-desktop-portal-gtk ]; |
256 | | - config.common.default = "gtk"; |
257 | | - }; |
| 254 | + # xdg.portal = { |
| 255 | + # enable = true; |
| 256 | + # extraPortals = with pkgs; [ xdg-desktop-portal-gtk ]; |
| 257 | + # config.common.default = "gtk"; |
| 258 | + # }; |
258 | 259 |
|
259 | 260 | # # https://wiki.hyprland.org/Nix/Hyprland-on-NixOS/ |
260 | 261 | # programs.hyprland = { |
|
286 | 287 |
|
287 | 288 | # https://nixos.wiki/wiki/Virt-manager |
288 | 289 | virtualisation.libvirtd.enable = true; |
289 | | - programs.virt-manager.enable = true; |
| 290 | + #programs.virt-manager.enable = true; |
290 | 291 | virtualisation.spiceUSBRedirection.enable = true; |
291 | 292 |
|
292 | 293 | virtualisation.containers = { |
|
0 commit comments