Merge branch 'home-reorganize'
This commit is contained in:
commit
2354c2d6b8
23
flake.nix
23
flake.nix
@ -35,24 +35,27 @@
|
||||
modules = [
|
||||
./hosts/slab/configuration.nix
|
||||
./hosts/slab/nvidia-optimus.nix
|
||||
./roles/remote.nix
|
||||
./roles/plasma.nix
|
||||
./fragments/opengl.nix
|
||||
./roles/gaming.nix
|
||||
./roles/hyprland.nix
|
||||
./system/remote.nix
|
||||
./system/plasma.nix
|
||||
./system/fragments/opengl.nix
|
||||
./system/gaming.nix
|
||||
./system/hyprland.nix
|
||||
hmModule (hmModuleDefaults // {
|
||||
home-manager.users."${username}" = import ./hosts/slab/home.nix;
|
||||
})
|
||||
];
|
||||
};
|
||||
nullbox = lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./hosts/nullbox/configuration.nix
|
||||
./roles/remote.nix
|
||||
./roles/plasma.nix
|
||||
./fragments/hardware/nvidia-modeset.nix
|
||||
./roles/gaming.nix
|
||||
./system/remote.nix
|
||||
./system/plasma.nix
|
||||
./system/fragments/hardware/nvidia-modeset.nix
|
||||
./system/gaming.nix
|
||||
|
||||
hmModule (hmModuleDefaults // {
|
||||
home-manager.users."${username}" = import ./home.nix;
|
||||
home-manager.users."${username}" = import ./hosts/nullbox/home.nix;
|
||||
})
|
||||
|
||||
];
|
||||
|
@ -7,6 +7,4 @@
|
||||
home.packages = with pkgs; [
|
||||
btop
|
||||
];
|
||||
|
||||
home.stateVersion = "23.11";
|
||||
}
|
8
hosts/nullbox/home.nix
Normal file
8
hosts/nullbox/home.nix
Normal file
@ -0,0 +1,8 @@
|
||||
{ lib, pkgs, osConfig, ... }:
|
||||
{
|
||||
imports = [
|
||||
../../home/common.nix
|
||||
];
|
||||
|
||||
home.stateVersion = "23.11";
|
||||
}
|
8
hosts/slab/home.nix
Normal file
8
hosts/slab/home.nix
Normal file
@ -0,0 +1,8 @@
|
||||
{ lib, pkgs, osConfig, ... }:
|
||||
{
|
||||
imports = [
|
||||
../../home/common.nix
|
||||
];
|
||||
|
||||
home.stateVersion = "23.11";
|
||||
}
|
@ -1,7 +1,7 @@
|
||||
{ config, lib, pkgs, ...}:
|
||||
{
|
||||
imports = [
|
||||
../fragments/base.nix
|
||||
../fragments/me.nix
|
||||
./fragments/base.nix
|
||||
./fragments/me.nix
|
||||
];
|
||||
}
|
@ -3,10 +3,10 @@
|
||||
{
|
||||
imports = [
|
||||
./base.nix
|
||||
../fragments/sound.nix
|
||||
../fragments/multimedia.nix
|
||||
../fragments/software/syncthing.nix
|
||||
../fragments/hardware/bluetooth.nix
|
||||
./fragments/sound.nix
|
||||
./fragments/multimedia.nix
|
||||
./fragments/software/syncthing.nix
|
||||
./fragments/hardware/bluetooth.nix
|
||||
];
|
||||
|
||||
# Enable the X11 windowing system.
|
@ -41,6 +41,7 @@
|
||||
inetutils
|
||||
socat
|
||||
nmap
|
||||
hping
|
||||
|
||||
# system utilities
|
||||
htop
|
Loading…
x
Reference in New Issue
Block a user