Compare commits

...

2 Commits
main ... main

Author SHA1 Message Date
81e521ee5c makin piss 2025-08-16 18:53:00 -04:00
Blaine
b6737fcb9a replaced instances of javi with blaine 2025-08-16 13:52:16 -04:00
11 changed files with 44 additions and 72 deletions

View File

@ -68,7 +68,7 @@
{ {
nixosConfigurations = { nixosConfigurations = {
desktop = mkHost "desktop" [ desktop = mkHost "desktop" [
./modules/system/nvidia.nix #./modules/system/nvidia.nix
./modules/system/nfs.nix ./modules/system/nfs.nix
./modules/system/display-manager/sddm.nix ./modules/system/display-manager/sddm.nix
./modules/system/gaming.nix ./modules/system/gaming.nix

View File

@ -99,6 +99,7 @@
brave brave
git git
openssh openssh
firefox
xdg-user-dirs-gtk # This helps with Nautilus integration xdg-user-dirs-gtk # This helps with Nautilus integration
cachix cachix
]; ];
@ -109,9 +110,9 @@
}; };
}; };
users.users.javi = { users.users.blaine = {
isNormalUser = true; isNormalUser = true;
description = "javi"; description = "blaine";
shell = pkgs.zsh; shell = pkgs.zsh;
useDefaultShell = true; useDefaultShell = true;
extraGroups = [ extraGroups = [
@ -124,7 +125,7 @@
stateVersion = "25.05"; # Did you read the comment? stateVersion = "25.05"; # Did you read the comment?
activationScripts.avatar = '' activationScripts.avatar = ''
mkdir -p /var/lib/AccountsService/icons mkdir -p /var/lib/AccountsService/icons
ln -sf /etc/avatars/javi.png /var/lib/AccountsService/icons/javi ln -sf /etc/avatars/javi.png /var/lib/AccountsService/icons/blaine
''; '';
}; };
@ -169,7 +170,7 @@
stylix = { stylix = {
enable = true; enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark.yaml"; base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark.yaml";
# image = "/home/javi/Documents/wallpapers/Fantasy-Mountain.png"; # image = "/home/blaine/Documents/wallpapers/Fantasy-Mountain.png";
polarity = "dark"; polarity = "dark";
}; };
@ -180,7 +181,7 @@
assets = assets; assets = assets;
}; };
users = { users = {
"javi" = { "blaine" = {
imports = [ imports = [
../modules/home/home.nix ../modules/home/home.nix
]; ];

View File

@ -1,71 +1,40 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ { config, lib, pkgs, modulesPath, ... }:
config,
lib,
pkgs,
modulesPath,
...
}:
{ {
imports = [ imports =
(modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
"nvme"
"xhci_pci"
"ahci"
"usb_storage"
"usbhid"
"sd_mod"
];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = { fileSystems."/" =
device = "/dev/disk/by-uuid/8f492948-4572-44d4-9da9-9394894320f4"; { device = "/dev/disk/by-uuid/bba79e96-6fd2-4124-b3cd-157c299eb999";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = { fileSystems."/boot" =
device = "/dev/disk/by-uuid/EAA9-478C"; { device = "/dev/disk/by-uuid/95EC-A63C";
fsType = "vfat"; fsType = "vfat";
options = [ options = [ "fmask=0077" "dmask=0077" ];
"fmask=0077" };
"dmask=0077"
swapDevices =
[ { device = "/dev/disk/by-uuid/b13461ea-9ff4-4843-b39b-d9d0759fff1e"; }
]; ];
};
fileSystems."/home" = {
device = "/dev/disk/by-uuid/6646d409-6417-4410-b3a0-fe6bafb2b9f3";
fsType = "ext4";
};
fileSystems."/tmp" = {
device = "/dev/disk/by-uuid/9fe1009a-f604-40ff-a13d-e78d9041397f";
fsType = "ext4";
};
fileSystems."/var/log" = {
device = "/dev/disk/by-uuid/9d39eb6d-09ab-4d66-8864-c19f9d59f620";
fsType = "ext4";
};
swapDevices = [
{ device = "/dev/disk/by-uuid/6fa52bf4-b1d9-468f-bc3a-f0c740e80c86"; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction # still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true; networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp7s0.useDHCP = lib.mkDefault true; # networking.interfaces.enp5s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp6s0.useDHCP = lib.mkDefault true; # networking.interfaces.wlp4s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;

View File

@ -6,7 +6,7 @@
}: }:
let let
kittyConfig = '' kittyConfig = ''
font_size 16.0 font_size 11
background_opacity 0.7 background_opacity 0.7
background_blur 1 background_blur 1

View File

@ -28,8 +28,8 @@
# }; # };
home = { home = {
username = "javi"; username = "blaine";
homeDirectory = "/home/javi"; homeDirectory = "/home/blaine";
stateVersion = "25.05"; # Home manager version. Do not update carelessly stateVersion = "25.05"; # Home manager version. Do not update carelessly
packages = with pkgs; [ packages = with pkgs; [
# Basics # Basics

View File

@ -66,8 +66,10 @@
repeat_rate = 20; repeat_rate = 20;
}; };
monitor = [ monitor = [
"DP-5, 3440x1440@179.99, 0x0, 1" "DP-1, 2560x1600@59.97200, 0x0, 1"
"DP-2, 1920x1080@60.00000, 2560x-375, 1, transform, 1"
]; ];
general = { general = {

View File

@ -18,11 +18,11 @@
ipc = "on"; ipc = "on";
splash = false; splash = false;
preload = [ preload = [
"/home/javi/.config/wallpaper.png" "/home/blaine/.config/wallpaper.png"
]; ];
wallpaper = [ wallpaper = [
", /home/javi/.config/wallpaper.png" ", /home/blaine/.config/wallpaper.png"
]; ];
}; };
}; };

View File

@ -23,7 +23,7 @@
}; };
}; };
users.users.javi.extraGroups = [ users.users.blaine.extraGroups = [
"input" "input"
"plugdev" "plugdev"
]; ];

View File

@ -6,7 +6,7 @@
... ...
}: }:
let let
basePath = "/home/javi/Documents/wallpapers"; basePath = "/home/blaine/Documents/wallpapers";
wallpaper = "Fantasy-Mountain.png"; wallpaper = "Fantasy-Mountain.png";
in in
{ {

View File

@ -6,7 +6,7 @@ let
shares = [ shares = [
"backups" "backups"
"container-data" "container-data"
"javi" "blaine"
]; ];
configureShare = share: { configureShare = share: {

View File

@ -49,10 +49,10 @@ in
# Enable PHP-FPM # Enable PHP-FPM
phpfpm = { phpfpm = {
pools.www = { pools.www = {
user = "javi"; user = "blaine";
group = "users"; group = "users";
settings = { settings = {
"listen.owner" = "javi"; "listen.owner" = "blaine";
"listen.group" = "users"; "listen.group" = "users";
"listen.mode" = "0660"; "listen.mode" = "0660";
"pm" = "dynamic"; "pm" = "dynamic";
@ -83,7 +83,7 @@ in
# Wildcard for other .test domains # Wildcard for other .test domains
http://*.test { http://*.test {
root * /home/javi/projects/{labels.1}/public root * /home/blaine/projects/{labels.1}/public
php_server php_server
} }
''; '';
@ -125,12 +125,12 @@ in
# Create a dedicated caddy config directory # Create a dedicated caddy config directory
systemd.tmpfiles.rules = [ systemd.tmpfiles.rules = [
"d /var/lib/caddy 0755 javi users -" "d /var/lib/caddy 0755 blaine users -"
]; ];
systemd.services.caddy = { systemd.services.caddy = {
serviceConfig = { serviceConfig = {
User = lib.mkForce "javi"; User = lib.mkForce "blaine";
Group = lib.mkForce "users"; Group = lib.mkForce "users";
# More comprehensive capabilities # More comprehensive capabilities
AmbientCapabilities = [ AmbientCapabilities = [
@ -151,7 +151,7 @@ in
}; };
# And make sure your user is in the caddy group # And make sure your user is in the caddy group
users.users.javi = { users.users.blaine = {
extraGroups = [ extraGroups = [
"users" "users"
]; ];