Compare commits

..

No commits in common. "456b0d083f0c690bf0ced8ce17dcb04222e884ad" and "7ec042f299c5619ff9d16dffb27ea2ab11aee2ba" have entirely different histories.

10 changed files with 85 additions and 151 deletions

View File

@ -156,12 +156,21 @@
hostname = "slab";
stateVersion = "23.11";
};
nullbox = mkSystem {
nullbox = lib.nixosSystem rec {
system = "x86_64-linux";
hostname = "nullbox";
modules = [
./hosts/nullbox/configuration.nix
./system/remote.nix
./system/plasma.nix
./system/fragments/hardware/nvidia-modeset.nix
./system/gaming.nix
(homeManagerInit {
module = import ./hosts/nullbox/home.nix;
inherit system;
stateVersion = "23.11";
})
];
};
}; # end nixosConfigurations
}; # end outputs
} # end flake
};
};
}

View File

@ -7,25 +7,15 @@
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
];
config = {
fileSystems."/ntfs" = {
fsType = "ntfs-3g";
device = "/dev/disk/by-uuid/6AC23F0FC23EDF4F";
};
# nixfiles
nixfiles = {
common.remoteAccess.enable = true;
sessions.plasma.enable = true;
hardware.nvidia.modesetting.enable = true;
packageSets.gaming.enable = true;
};
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
];
# cryptsetup
boot.initrd.luks.devices = {
@ -88,7 +78,6 @@
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.11"; # Did you read the comment?
};
}

View File

@ -1,11 +1,8 @@
{ lib, pkgs, osConfig, ... }:
{
imports = [
../../home/common.nix
];
config = {
nixfiles.profile.base.enable = true;
home.stateVersion = "23.11";
};
}

View File

@ -24,10 +24,7 @@
nixfiles = {
common.remoteAccess.enable = true;
hardware.opengl.enable = true;
packageSets = {
gaming.enable = true;
fun.enable = true;
};
packageSets.gaming.enable = true;
sessions.hyprland.enable = true;
sessions.plasma.enable = lib.mkDefault false;
};

View File

@ -10,7 +10,7 @@ in
config = lib.mkIf cfg.enable {
users.users.nullbite = {
isNormalUser = true;
extraGroups = [ "wheel" ] ++ lib.optional config.nixfiles.packageSets.fun.enable "input";
extraGroups = [ "wheel" ];
packages = with pkgs; [
keychain
];

View File

@ -10,7 +10,6 @@ in
./profile
./programs
./sessions
./testing
];
config = {};
options.nixfiles = {

View File

@ -3,6 +3,5 @@
imports = [
./gaming.nix
./multimedia.nix
./fun.nix
];
}

View File

@ -1,28 +0,0 @@
{ pkgs, config, lib, ...}:
let
cfg = config.nixfiles.packageSets.fun;
in
{
options.nixfiles.packageSets.fun = {
enable = lib.mkEnableOption "fun package set";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
cowsay
uwufetch
fortune
pipes
hollywood
sl
figlet
aalib
asciiquarium
] ++ lib.optionals config.services.xserver.enable [
oneko
] ++ lib.optionals config.sound.enable [
bucklespring-libinput
espeak
];
};
}

View File

@ -1,6 +0,0 @@
{...}:
{
imports = [
./mutability.nix
];
}

View File

@ -1,22 +0,0 @@
{ lib, pkgs, config, ... }:
let
cfg = config.nixfiles.testing.mutability;
file = pkgs.writeTextFile {
name = "test";
text = ''
meow!
'';
};
in
{
options.nixfiles.testing.mutability = {
enable = lib.mkEnableOption "mutability test";
};
config = lib.mkIf cfg.enable {
environment.etc.mutability-test = {
mode = "0644";
source = file;
};
};
}