Compare commits

..

No commits in common. "2354c2d6b8184b401545aafac413f5df90198031" and "a73a585d9728d6c57ad0c0ec79cad3ce60e389fd" have entirely different histories.

21 changed files with 18 additions and 36 deletions

View File

@ -35,27 +35,24 @@
modules = [ modules = [
./hosts/slab/configuration.nix ./hosts/slab/configuration.nix
./hosts/slab/nvidia-optimus.nix ./hosts/slab/nvidia-optimus.nix
./system/remote.nix ./roles/remote.nix
./system/plasma.nix ./roles/plasma.nix
./system/fragments/opengl.nix ./fragments/opengl.nix
./system/gaming.nix ./roles/gaming.nix
./system/hyprland.nix ./roles/hyprland.nix
hmModule (hmModuleDefaults // {
home-manager.users."${username}" = import ./hosts/slab/home.nix;
})
]; ];
}; };
nullbox = lib.nixosSystem { nullbox = lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
./hosts/nullbox/configuration.nix ./hosts/nullbox/configuration.nix
./system/remote.nix ./roles/remote.nix
./system/plasma.nix ./roles/plasma.nix
./system/fragments/hardware/nvidia-modeset.nix ./fragments/hardware/nvidia-modeset.nix
./system/gaming.nix ./roles/gaming.nix
hmModule (hmModuleDefaults // { hmModule (hmModuleDefaults // {
home-manager.users."${username}" = import ./hosts/nullbox/home.nix; home-manager.users."${username}" = import ./home.nix;
}) })
]; ];

View File

@ -41,7 +41,6 @@
inetutils inetutils
socat socat
nmap nmap
hping
# system utilities # system utilities
htop htop

View File

@ -7,4 +7,6 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
btop btop
]; ];
home.stateVersion = "23.11";
} }

View File

@ -1,8 +0,0 @@
{ lib, pkgs, osConfig, ... }:
{
imports = [
../../home/common.nix
];
home.stateVersion = "23.11";
}

View File

@ -1,8 +0,0 @@
{ lib, pkgs, osConfig, ... }:
{
imports = [
../../home/common.nix
];
home.stateVersion = "23.11";
}

View File

@ -1,7 +1,7 @@
{ config, lib, pkgs, ...}: { config, lib, pkgs, ...}:
{ {
imports = [ imports = [
./fragments/base.nix ../fragments/base.nix
./fragments/me.nix ../fragments/me.nix
]; ];
} }

View File

@ -3,10 +3,10 @@
{ {
imports = [ imports = [
./base.nix ./base.nix
./fragments/sound.nix ../fragments/sound.nix
./fragments/multimedia.nix ../fragments/multimedia.nix
./fragments/software/syncthing.nix ../fragments/software/syncthing.nix
./fragments/hardware/bluetooth.nix ../fragments/hardware/bluetooth.nix
]; ];
# Enable the X11 windowing system. # Enable the X11 windowing system.