Compare commits
No commits in common. "456b0d083f0c690bf0ced8ce17dcb04222e884ad" and "7ec042f299c5619ff9d16dffb27ea2ab11aee2ba" have entirely different histories.
456b0d083f
...
7ec042f299
21
flake.nix
21
flake.nix
@ -156,12 +156,21 @@
|
|||||||
hostname = "slab";
|
hostname = "slab";
|
||||||
stateVersion = "23.11";
|
stateVersion = "23.11";
|
||||||
};
|
};
|
||||||
|
nullbox = lib.nixosSystem rec {
|
||||||
nullbox = mkSystem {
|
|
||||||
system = "x86_64-linux";
|
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";
|
stateVersion = "23.11";
|
||||||
|
})
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}; # end nixosConfigurations
|
};
|
||||||
}; # end outputs
|
};
|
||||||
} # end flake
|
}
|
||||||
|
@ -7,25 +7,15 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
imports =
|
|
||||||
[ # Include the results of the hardware scan.
|
|
||||||
./hardware-configuration.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
config = {
|
|
||||||
|
|
||||||
fileSystems."/ntfs" = {
|
fileSystems."/ntfs" = {
|
||||||
fsType = "ntfs-3g";
|
fsType = "ntfs-3g";
|
||||||
device = "/dev/disk/by-uuid/6AC23F0FC23EDF4F";
|
device = "/dev/disk/by-uuid/6AC23F0FC23EDF4F";
|
||||||
};
|
};
|
||||||
|
|
||||||
# nixfiles
|
imports =
|
||||||
nixfiles = {
|
[ # Include the results of the hardware scan.
|
||||||
common.remoteAccess.enable = true;
|
./hardware-configuration.nix
|
||||||
sessions.plasma.enable = true;
|
];
|
||||||
hardware.nvidia.modesetting.enable = true;
|
|
||||||
packageSets.gaming.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# cryptsetup
|
# cryptsetup
|
||||||
boot.initrd.luks.devices = {
|
boot.initrd.luks.devices = {
|
||||||
@ -88,7 +78,6 @@
|
|||||||
# Before changing this value read the documentation for this option
|
# Before changing this value read the documentation for this option
|
||||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||||
system.stateVersion = "23.11"; # Did you read the comment?
|
system.stateVersion = "23.11"; # Did you read the comment?
|
||||||
};
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
{ lib, pkgs, osConfig, ... }:
|
{ lib, pkgs, osConfig, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
../../home/common.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
config = {
|
|
||||||
nixfiles.profile.base.enable = true;
|
|
||||||
|
|
||||||
home.stateVersion = "23.11";
|
home.stateVersion = "23.11";
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
@ -24,10 +24,7 @@
|
|||||||
nixfiles = {
|
nixfiles = {
|
||||||
common.remoteAccess.enable = true;
|
common.remoteAccess.enable = true;
|
||||||
hardware.opengl.enable = true;
|
hardware.opengl.enable = true;
|
||||||
packageSets = {
|
packageSets.gaming.enable = true;
|
||||||
gaming.enable = true;
|
|
||||||
fun.enable = true;
|
|
||||||
};
|
|
||||||
sessions.hyprland.enable = true;
|
sessions.hyprland.enable = true;
|
||||||
sessions.plasma.enable = lib.mkDefault false;
|
sessions.plasma.enable = lib.mkDefault false;
|
||||||
};
|
};
|
||||||
|
@ -10,7 +10,7 @@ in
|
|||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
users.users.nullbite = {
|
users.users.nullbite = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" ] ++ lib.optional config.nixfiles.packageSets.fun.enable "input";
|
extraGroups = [ "wheel" ];
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
keychain
|
keychain
|
||||||
];
|
];
|
||||||
|
@ -10,7 +10,6 @@ in
|
|||||||
./profile
|
./profile
|
||||||
./programs
|
./programs
|
||||||
./sessions
|
./sessions
|
||||||
./testing
|
|
||||||
];
|
];
|
||||||
config = {};
|
config = {};
|
||||||
options.nixfiles = {
|
options.nixfiles = {
|
||||||
|
@ -3,6 +3,5 @@
|
|||||||
imports = [
|
imports = [
|
||||||
./gaming.nix
|
./gaming.nix
|
||||||
./multimedia.nix
|
./multimedia.nix
|
||||||
./fun.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -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
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
{...}:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./mutability.nix
|
|
||||||
];
|
|
||||||
}
|
|
@ -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;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user