The Blue Update #1
|
@ -1,4 +1,4 @@
|
||||||
{
|
{ ... }: {
|
||||||
auth = "doas";
|
auth = "doas";
|
||||||
nixcfg = "ranger /etc/nixos";
|
nixcfg = "ranger /etc/nixos";
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{ ... }: {
|
||||||
d1 = "DP-3";
|
d1 = "DP-3";
|
||||||
d2 = "DP-1";
|
d2 = "DP-1";
|
||||||
d3 = "DP-2";
|
d3 = "DP-2";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
rec {
|
{ ... }: rec {
|
||||||
netInt = "eno1";
|
netInt = "eno1";
|
||||||
localSpan = "10.0.0";
|
localSpan = "10.0.0";
|
||||||
server = "${localSpan}.2";
|
server = "${localSpan}.2";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{ ... }: {
|
||||||
colors = {
|
colors = {
|
||||||
prime = ''3823C4''; #3823C4
|
prime = ''3823C4''; #3823C4
|
||||||
accent = ''1B1F59''; #1B1F59
|
accent = ''1B1F59''; #1B1F59
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{inputs, ...}: {
|
{ inputs, ... }: {
|
||||||
# This one brings our custom packages from the 'pkgs' directory
|
|
||||||
additions = final: _prev: import ./pkgs {pkgs = final;};
|
additions = final: _prev: import ./pkgs {pkgs = final;};
|
||||||
|
|
||||||
selfsuper = (self: super: {
|
selfsuper = (self: super: {
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
# Custom packages, that can be defined similarly to nixpkgs
|
{ pkgs, ... }: {
|
||||||
{pkgs, ...}: {
|
|
||||||
xash3d = pkgs.callPackage ./xash/xash3d.nix {};
|
xash3d = pkgs.callPackage ./xash/xash3d.nix {};
|
||||||
hlsdk = pkgs.callPackage ./xash/hlsdk.nix {};
|
hlsdk = pkgs.callPackage ./xash/hlsdk.nix {};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{ ... }: {
|
||||||
# Define domains
|
# Define domains
|
||||||
jimDomain = "";
|
jimDomain = "";
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{ ... }: {
|
||||||
w0 = ''0:0'';
|
w0 = ''0:0'';
|
||||||
w1 = ''1:1'';
|
w1 = ''1:1'';
|
||||||
w2 = ''2:2'';
|
w2 = ''2:2'';
|
||||||
|
|
18
flake.nix
|
@ -55,27 +55,27 @@
|
||||||
JimDesktop = nixpkgs.lib.nixosSystem {
|
JimDesktop = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {inherit inputs outputs;};
|
specialArgs = {inherit inputs outputs;};
|
||||||
modules = [
|
modules = [
|
||||||
./system/hosts/JimDesktop/configuration.nix
|
./hosts/JimDesktop/configuration.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
JimServer = nixpkgs.lib.nixosSystem {
|
JimServer = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {inherit inputs outputs;};
|
specialArgs = {inherit inputs outputs;};
|
||||||
modules = [
|
modules = [
|
||||||
./system/hosts/JimServer/configuration.nix
|
./JimServer/configuration.nix
|
||||||
mailserver.nixosModule
|
mailserver.nixosModule
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
JimPine = nixpkgs.lib.nixosSystem {
|
JimPine = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {inherit inputs outputs;};
|
specialArgs = {inherit inputs outputs;};
|
||||||
modules = [
|
modules = [
|
||||||
./system/hosts/JimPine/configuration.nix
|
./hosts/JimPine/configuration.nix
|
||||||
hardware.nixosModules.pine64-pinebook-pro
|
hardware.nixosModules.pine64-pinebook-pro
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
JimLenovo = nixpkgs.lib.nixosSystem {
|
JimLenovo = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {inherit inputs outputs;};
|
specialArgs = {inherit inputs outputs;};
|
||||||
modules = [
|
modules = [
|
||||||
./system/hosts/JimLenovo/configuration.nix
|
./hosts/JimLenovo/configuration.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -86,7 +86,7 @@
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
extraSpecialArgs = {inherit inputs outputs;};
|
extraSpecialArgs = {inherit inputs outputs;};
|
||||||
modules = [
|
modules = [
|
||||||
./home/hosts/JimDesktop/home.nix
|
./hosts/JimDesktop/home.nix
|
||||||
nur.nixosModules.nur
|
nur.nixosModules.nur
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
@ -94,14 +94,14 @@
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
extraSpecialArgs = {inherit inputs outputs;};
|
extraSpecialArgs = {inherit inputs outputs;};
|
||||||
modules = [
|
modules = [
|
||||||
./home/hosts/JimServer/home.nix
|
./hosts/JimServer/home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
"jimbo@JimPine" = home-manager.lib.homeManagerConfiguration {
|
"jimbo@JimPine" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = nixpkgs.legacyPackages.aarch64-linux;
|
pkgs = nixpkgs.legacyPackages.aarch64-linux;
|
||||||
extraSpecialArgs = {inherit inputs outputs;};
|
extraSpecialArgs = {inherit inputs outputs;};
|
||||||
modules = [
|
modules = [
|
||||||
./home/hosts/JimPine/home.nix
|
./hosts/JimPine/home.nix
|
||||||
nur.nixosModules.nur
|
nur.nixosModules.nur
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
@ -109,7 +109,7 @@
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
extraSpecialArgs = {inherit inputs outputs;};
|
extraSpecialArgs = {inherit inputs outputs;};
|
||||||
modules = [
|
modules = [
|
||||||
./home/hosts/JimLenovo/home.nix
|
./hosts/JimLenovo/home.nix
|
||||||
nur.nixosModules.nur
|
nur.nixosModules.nur
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
@ -118,7 +118,7 @@
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
extraSpecialArgs = {inherit inputs outputs;};
|
extraSpecialArgs = {inherit inputs outputs;};
|
||||||
modules = [
|
modules = [
|
||||||
./home/hosts/JimTerminal/home.nix
|
./hosts/JimTerminal/home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
# This is your home-manager configuration file
|
|
||||||
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
|
|
||||||
{pkgs, inputs, outputs, ...}: {
|
|
||||||
imports = [
|
|
||||||
# Terminal apps
|
|
||||||
./utils/zsh.nix
|
|
||||||
./utils/fastfetch.nix
|
|
||||||
./utils/neovim.nix
|
|
||||||
./utils/ranger.nix
|
|
||||||
./utils/tmux.nix
|
|
||||||
|
|
||||||
# Services
|
|
||||||
./services/reloadunits.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
nixpkgs = {
|
|
||||||
config.allowUnfree = true;
|
|
||||||
overlays = [
|
|
||||||
outputs.overlays.additions
|
|
||||||
outputs.overlays.selfsuper
|
|
||||||
outputs.overlays.finalprev
|
|
||||||
inputs.blender-bin.overlays.default
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
# Common programs I'll need everywhere
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
home-manager
|
|
||||||
gotop
|
|
||||||
tcptrack
|
|
||||||
p7zip
|
|
||||||
vimv
|
|
||||||
dua
|
|
||||||
pciutils
|
|
||||||
usbutils
|
|
||||||
protonvpn-cli_2
|
|
||||||
];
|
|
||||||
|
|
||||||
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
||||||
home.stateVersion = "24.05";
|
|
||||||
}
|
|
11
home/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ ... }: {
|
||||||
|
imports = [
|
||||||
|
./users
|
||||||
|
];
|
||||||
|
|
||||||
|
# Allow unfree
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||||
|
home.stateVersion = "24.05";
|
||||||
|
}
|
|
@ -1,46 +0,0 @@
|
||||||
{config, ...}: {
|
|
||||||
imports = [
|
|
||||||
# Common modules
|
|
||||||
./../../base.nix
|
|
||||||
./../../users/jimbo.nix
|
|
||||||
./../../utils/git.nix
|
|
||||||
|
|
||||||
# GUI Apps
|
|
||||||
./../../misc/guifiles.nix
|
|
||||||
./../../sway/sway.nix
|
|
||||||
./../../sway/swaylock.nix
|
|
||||||
./../../programs/gtk.nix
|
|
||||||
./../../programs/foot.nix
|
|
||||||
./../../programs/librewolf.nix
|
|
||||||
./../../programs/mangohud.nix
|
|
||||||
./../../programs/mpv.nix
|
|
||||||
./../../programs/obs.nix
|
|
||||||
./../../programs/pcmanfm-qt.nix
|
|
||||||
./../../programs/rofi.nix
|
|
||||||
./../../programs/swappy.nix
|
|
||||||
./../../programs/easyeffects.nix
|
|
||||||
./../../utils/ncmpcpp.nix
|
|
||||||
|
|
||||||
# Misc apps and tools
|
|
||||||
./../../misc/useful.nix
|
|
||||||
./../../misc/avtools.nix
|
|
||||||
./../../misc/filemanager.nix
|
|
||||||
./../../misc/production.nix
|
|
||||||
./../../misc/gaming.nix
|
|
||||||
./../../misc/xash3d.nix
|
|
||||||
#./../../misc/emulators.nix
|
|
||||||
#./../../misc/remotedesktop.nix
|
|
||||||
./../../misc/school.nix
|
|
||||||
./../../misc/variables.nix
|
|
||||||
|
|
||||||
# Services
|
|
||||||
./../../services/gnome-keyring.nix
|
|
||||||
./../../services/mako.nix
|
|
||||||
./../../services/udiskie.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
# Symlinks
|
|
||||||
home.file = {
|
|
||||||
"VMs".source = config.lib.file.mkOutOfStoreSymlink "/etc/libvirt/VMs";
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,39 +0,0 @@
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
# Common modules
|
|
||||||
./../../base.nix
|
|
||||||
./../../users/jimbo.nix
|
|
||||||
./../../utils/git.nix
|
|
||||||
|
|
||||||
# GUI Apps
|
|
||||||
./../../misc/guifiles.nix
|
|
||||||
./../../sway/sway.nix
|
|
||||||
./../../sway/swaylock.nix
|
|
||||||
./../../programs/gtk.nix
|
|
||||||
./../../programs/foot.nix
|
|
||||||
./../../programs/librewolf.nix
|
|
||||||
./../../programs/mangohud.nix
|
|
||||||
./../../programs/mpv.nix
|
|
||||||
./../../programs/obs.nix
|
|
||||||
./../../programs/pcmanfm-qt.nix
|
|
||||||
./../../programs/rofi.nix
|
|
||||||
./../../programs/swappy.nix
|
|
||||||
./../../programs/easyeffects.nix
|
|
||||||
./../../utils/ncmpcpp.nix
|
|
||||||
|
|
||||||
# Misc apps and tools
|
|
||||||
./../../misc/useful.nix
|
|
||||||
./../../misc/avtools.nix
|
|
||||||
./../../misc/filemanager.nix
|
|
||||||
./../../misc/gaming.nix
|
|
||||||
./../../misc/xash3d.nix
|
|
||||||
./../../misc/remotedesktop.nix
|
|
||||||
./../../misc/school.nix
|
|
||||||
./../../misc/variables.nix
|
|
||||||
|
|
||||||
# Services
|
|
||||||
./../../services/gnome-keyring.nix
|
|
||||||
./../../services/mako.nix
|
|
||||||
./../../services/udiskie.nix
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,42 +0,0 @@
|
||||||
{pkgs, outputs, ...}: {
|
|
||||||
imports = [
|
|
||||||
# Common modules
|
|
||||||
./../../base.nix
|
|
||||||
./../../users/jimbo.nix
|
|
||||||
./../../utils/git.nix
|
|
||||||
|
|
||||||
# GUI Apps
|
|
||||||
./../../misc/guifiles.nix
|
|
||||||
./../../sway/sway.nix
|
|
||||||
./../../sway/swaylock.nix
|
|
||||||
./../../programs/gtk.nix
|
|
||||||
./../../programs/foot.nix
|
|
||||||
./../../programs/librewolf.nix
|
|
||||||
./../../programs/mangohud.nix
|
|
||||||
./../../programs/mpv.nix
|
|
||||||
./../../programs/pcmanfm-qt.nix
|
|
||||||
./../../programs/rofi.nix
|
|
||||||
./../../programs/swappy.nix
|
|
||||||
./../../programs/easyeffects.nix
|
|
||||||
./../../utils/ncmpcpp.nix
|
|
||||||
|
|
||||||
# Misc apps and tools
|
|
||||||
./../../misc/useful.nix
|
|
||||||
./../../misc/avtools.nix
|
|
||||||
./../../misc/filemanager.nix
|
|
||||||
./../../misc/remotedesktop.nix
|
|
||||||
./../../misc/variables.nix
|
|
||||||
|
|
||||||
# Services
|
|
||||||
./../../services/gnome-keyring.nix
|
|
||||||
./../../services/mako.nix
|
|
||||||
./../../services/udiskie.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
# Needed to make the speaker work
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
alsa-utils
|
|
||||||
];
|
|
||||||
|
|
||||||
wayland.windowManager.sway.config.output.${outputs.displays.dI}.scale = "1.3";
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
# Common modules
|
|
||||||
./../../base.nix
|
|
||||||
./../../users/jimbo.nix
|
|
||||||
./../../utils/git.nix
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
yt-dlp
|
|
||||||
spotdl
|
|
||||||
playerctl
|
|
||||||
ffmpeg
|
|
||||||
pulsemixer
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,10 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
dolphin-emu
|
|
||||||
cemu
|
|
||||||
ryujinx
|
|
||||||
duckstation
|
|
||||||
pcsx2
|
|
||||||
unstable.lime3ds
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
gnome.file-roller
|
|
||||||
imagemagick
|
|
||||||
poppler_utils
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
steam
|
|
||||||
steam-run
|
|
||||||
heroic
|
|
||||||
prismlauncher
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
krita
|
|
||||||
inkscape
|
|
||||||
audacity
|
|
||||||
blender_4_2
|
|
||||||
sunvox
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
moonlight-qt
|
|
||||||
rustdesk-flutter
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
remmina
|
|
||||||
freerdp
|
|
||||||
globalprotect-openconnect
|
|
||||||
python3
|
|
||||||
zoom-us
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
imv
|
|
||||||
qbittorrent
|
|
||||||
libreoffice-fresh
|
|
||||||
vesktop
|
|
||||||
fractal
|
|
||||||
ffmpegthumbnailer
|
|
||||||
thunderbird
|
|
||||||
protonvpn-cli_2
|
|
||||||
bc
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,30 +0,0 @@
|
||||||
{pkgs, inputs, ...}: {
|
|
||||||
# Select default apps
|
|
||||||
xdg.mimeApps.defaultApplications = {
|
|
||||||
"inode/directory" = ["pcmanfm-qt.desktop"];
|
|
||||||
"text/plain" = ["nvim.desktop"];
|
|
||||||
"image/png" = ["imv.desktop"];
|
|
||||||
"image/jpeg" = ["imv.desktop"];
|
|
||||||
"video/*" = ["mpv.desktop"];
|
|
||||||
};
|
|
||||||
|
|
||||||
# Set dconf settings
|
|
||||||
dconf.settings = {
|
|
||||||
"org/gnome/desktop/interface/color-scheme" = {
|
|
||||||
color-scheme = "prefer-dark";
|
|
||||||
};
|
|
||||||
"org/virt-manager/virt-manager/connections" = {
|
|
||||||
autoconnect = ["qemu:///system"];
|
|
||||||
uris = ["qemu:///system"];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
home.file = let
|
|
||||||
alsoftConf = ''
|
|
||||||
drivers=pulse
|
|
||||||
'';
|
|
||||||
in {
|
|
||||||
# Alsoft config
|
|
||||||
".alsoftrc".text = alsoftConf;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
xash3d
|
|
||||||
hlsdk
|
|
||||||
];
|
|
||||||
}
|
|
6
home/modules/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }: {
|
||||||
|
imports = [
|
||||||
|
./files
|
||||||
|
./settings
|
||||||
|
];
|
||||||
|
}
|
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 86 KiB |
Before Width: | Height: | Size: 2 MiB After Width: | Height: | Size: 2 MiB |
Before Width: | Height: | Size: 2.3 MiB After Width: | Height: | Size: 2.3 MiB |
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
Before Width: | Height: | Size: 314 KiB After Width: | Height: | Size: 314 KiB |
|
@ -1,15 +1,17 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
# Files that only make sense with a GUI
|
|
||||||
home.file = {
|
home.file = {
|
||||||
".face" = {
|
".face" = {
|
||||||
source = ../assets/user-icon.png;
|
source = ./assets/user-icon.png;
|
||||||
};
|
};
|
||||||
".wallpapers" = {
|
".wallpapers" = {
|
||||||
source = ../assets/wallpapers;
|
source = ./assets/wallpapers;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
".icons/default" = {
|
".icons/default" = {
|
||||||
source = "${pkgs.simp1e-cursors}/share/icons/Simp1e-Dark";
|
source = "${pkgs.simp1e-cursors}/share/icons/Simp1e-Dark";
|
||||||
};
|
};
|
||||||
|
".alsoftrc" = {
|
||||||
|
text = ''drivers=pulse'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
8
home/modules/overlays/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ ... }: {
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
outputs.overlays.additions
|
||||||
|
outputs.overlays.selfsuper
|
||||||
|
outputs.overlays.finalprev
|
||||||
|
inputs.blender-bin.overlays.default
|
||||||
|
];
|
||||||
|
}
|
11
home/modules/settings/dconf/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ ... }: {
|
||||||
|
dconf.settings = {
|
||||||
|
"org/gnome/desktop/interface/color-scheme" = {
|
||||||
|
color-scheme = "prefer-dark";
|
||||||
|
};
|
||||||
|
"org/virt-manager/virt-manager/connections" = {
|
||||||
|
autoconnect = ["qemu:///system"];
|
||||||
|
uris = ["qemu:///system"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
7
home/modules/settings/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./dconf
|
||||||
|
./gtk
|
||||||
|
./xdg
|
||||||
|
];
|
||||||
|
}
|
|
@ -1,5 +1,4 @@
|
||||||
{pkgs, outputs, ...}: {
|
{ pkgs, outputs, ... }: {
|
||||||
# Define GTK theme settings
|
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
font = {
|
font = {
|
||||||
|
@ -24,7 +23,6 @@
|
||||||
name = "Simp1e-Dark";
|
name = "Simp1e-Dark";
|
||||||
};
|
};
|
||||||
|
|
||||||
# GTK app bookmarks
|
|
||||||
gtk3 = {
|
gtk3 = {
|
||||||
bookmarks = [
|
bookmarks = [
|
||||||
# Local
|
# Local
|
9
home/modules/settings/xdg/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ ... }: {
|
||||||
|
xdg.mimeApps.defaultApplications = {
|
||||||
|
"inode/directory" = ["pcmanfm-qt.desktop"];
|
||||||
|
"text/plain" = ["nvim.desktop"];
|
||||||
|
"image/png" = ["imv.desktop"];
|
||||||
|
"image/jpeg" = ["imv.desktop"];
|
||||||
|
"video/*" = ["mpv.desktop"];
|
||||||
|
};
|
||||||
|
}
|
10
home/pc.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{ ... }: {
|
||||||
|
imports = [
|
||||||
|
./default.nix
|
||||||
|
./modules
|
||||||
|
./profiles
|
||||||
|
./programs
|
||||||
|
./sway
|
||||||
|
./utils
|
||||||
|
];
|
||||||
|
}
|
20
home/programs/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{ ... }: {
|
||||||
|
imports = [
|
||||||
|
./easyeffects
|
||||||
|
./fastfetch
|
||||||
|
./foot
|
||||||
|
./gaming
|
||||||
|
./git
|
||||||
|
./librewolf
|
||||||
|
./mako
|
||||||
|
./mangohud
|
||||||
|
./misc
|
||||||
|
./mpv
|
||||||
|
./ncmpcpp
|
||||||
|
./neovim
|
||||||
|
./pcmanfm-qt
|
||||||
|
./ranger
|
||||||
|
./rofi
|
||||||
|
./tmux
|
||||||
|
];
|
||||||
|
}
|
|
@ -1,309 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
home = {
|
|
||||||
packages = with pkgs; [
|
|
||||||
easyeffects
|
|
||||||
];
|
|
||||||
file = let
|
|
||||||
# An Easyeffects equalizer profile that sounds good to me
|
|
||||||
easyEffectsProfile = ''
|
|
||||||
{
|
|
||||||
"output": {
|
|
||||||
"blocklist": [],
|
|
||||||
"crystalizer#0": {
|
|
||||||
"band0": {
|
|
||||||
"bypass": false,
|
|
||||||
"intensity": 0.0,
|
|
||||||
"mute": false
|
|
||||||
},
|
|
||||||
"band1": {
|
|
||||||
"bypass": false,
|
|
||||||
"intensity": -1.0,
|
|
||||||
"mute": false
|
|
||||||
},
|
|
||||||
"band2": {
|
|
||||||
"bypass": false,
|
|
||||||
"intensity": -2.0,
|
|
||||||
"mute": false
|
|
||||||
},
|
|
||||||
"band3": {
|
|
||||||
"bypass": false,
|
|
||||||
"intensity": -3.0,
|
|
||||||
"mute": false
|
|
||||||
},
|
|
||||||
"band4": {
|
|
||||||
"bypass": false,
|
|
||||||
"intensity": -4.0,
|
|
||||||
"mute": false
|
|
||||||
},
|
|
||||||
"band5": {
|
|
||||||
"bypass": false,
|
|
||||||
"intensity": -5.0,
|
|
||||||
"mute": false
|
|
||||||
},
|
|
||||||
"band6": {
|
|
||||||
"bypass": false,
|
|
||||||
"intensity": -6.0,
|
|
||||||
"mute": false
|
|
||||||
},
|
|
||||||
"band7": {
|
|
||||||
"bypass": false,
|
|
||||||
"intensity": -7.0,
|
|
||||||
"mute": false
|
|
||||||
},
|
|
||||||
"band8": {
|
|
||||||
"bypass": false,
|
|
||||||
"intensity": -8.0,
|
|
||||||
"mute": false
|
|
||||||
},
|
|
||||||
"band9": {
|
|
||||||
"bypass": false,
|
|
||||||
"intensity": -9.0,
|
|
||||||
"mute": false
|
|
||||||
},
|
|
||||||
"band10": {
|
|
||||||
"bypass": false,
|
|
||||||
"intensity": -10.0,
|
|
||||||
"mute": false
|
|
||||||
},
|
|
||||||
"band11": {
|
|
||||||
"bypass": false,
|
|
||||||
"intensity": -11.0,
|
|
||||||
"mute": false
|
|
||||||
},
|
|
||||||
"band12": {
|
|
||||||
"bypass": false,
|
|
||||||
"intensity": -12.0,
|
|
||||||
"mute": false
|
|
||||||
},
|
|
||||||
"bypass": false,
|
|
||||||
"input-gain": 0.0,
|
|
||||||
"output-gain": 0.0
|
|
||||||
},
|
|
||||||
"equalizer#0": {
|
|
||||||
"balance": 0.0,
|
|
||||||
"bypass": false,
|
|
||||||
"input-gain": 0.0,
|
|
||||||
"left": {
|
|
||||||
"band0": {
|
|
||||||
"frequency": 32.0,
|
|
||||||
"gain": 1.1,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band1": {
|
|
||||||
"frequency": 64.0,
|
|
||||||
"gain": 1.16,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band2": {
|
|
||||||
"frequency": 125.0,
|
|
||||||
"gain": 3.33,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band3": {
|
|
||||||
"frequency": 250.0,
|
|
||||||
"gain": 1.53,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band4": {
|
|
||||||
"frequency": 500.0,
|
|
||||||
"gain": -1.83,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band5": {
|
|
||||||
"frequency": 1000.0,
|
|
||||||
"gain": -0.58,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band6": {
|
|
||||||
"frequency": 2000.0,
|
|
||||||
"gain": 1.42,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band7": {
|
|
||||||
"frequency": 4000.0,
|
|
||||||
"gain": 4.73,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band8": {
|
|
||||||
"frequency": 16000.0,
|
|
||||||
"gain": 7.62,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band9": {
|
|
||||||
"frequency": 156.38,
|
|
||||||
"gain": 2.84,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"mode": "IIR",
|
|
||||||
"num-bands": 10,
|
|
||||||
"output-gain": 0.0,
|
|
||||||
"pitch-left": 0.0,
|
|
||||||
"pitch-right": 0.0,
|
|
||||||
"right": {
|
|
||||||
"band0": {
|
|
||||||
"frequency": 32.0,
|
|
||||||
"gain": 1.1,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band1": {
|
|
||||||
"frequency": 64.0,
|
|
||||||
"gain": 1.16,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band2": {
|
|
||||||
"frequency": 125.0,
|
|
||||||
"gain": 3.33,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band3": {
|
|
||||||
"frequency": 250.0,
|
|
||||||
"gain": 1.53,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band4": {
|
|
||||||
"frequency": 500.0,
|
|
||||||
"gain": -1.83,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band5": {
|
|
||||||
"frequency": 1000.0,
|
|
||||||
"gain": -0.58,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band6": {
|
|
||||||
"frequency": 2000.0,
|
|
||||||
"gain": 1.42,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band7": {
|
|
||||||
"frequency": 4000.0,
|
|
||||||
"gain": 4.73,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band8": {
|
|
||||||
"frequency": 16000.0,
|
|
||||||
"gain": 7.62,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
},
|
|
||||||
"band9": {
|
|
||||||
"frequency": 156.38,
|
|
||||||
"gain": 2.84,
|
|
||||||
"mode": "RLC (BT)",
|
|
||||||
"mute": false,
|
|
||||||
"q": 4.36,
|
|
||||||
"slope": "x1",
|
|
||||||
"solo": false,
|
|
||||||
"type": "Bell"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"split-channels": false
|
|
||||||
},
|
|
||||||
"plugins_order": [
|
|
||||||
"equalizer#0",
|
|
||||||
"crystalizer#0"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
in {
|
|
||||||
# Easyeffects profile
|
|
||||||
".config/easyeffects/output/JimHeadphones.json".text = easyEffectsProfile;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
294
home/programs/easyeffects/JimHeadphones.json
Normal file
|
@ -0,0 +1,294 @@
|
||||||
|
{
|
||||||
|
"output": {
|
||||||
|
"blocklist": [],
|
||||||
|
"crystalizer#0": {
|
||||||
|
"band0": {
|
||||||
|
"bypass": false,
|
||||||
|
"intensity": 0.0,
|
||||||
|
"mute": false
|
||||||
|
},
|
||||||
|
"band1": {
|
||||||
|
"bypass": false,
|
||||||
|
"intensity": -1.0,
|
||||||
|
"mute": false
|
||||||
|
},
|
||||||
|
"band2": {
|
||||||
|
"bypass": false,
|
||||||
|
"intensity": -2.0,
|
||||||
|
"mute": false
|
||||||
|
},
|
||||||
|
"band3": {
|
||||||
|
"bypass": false,
|
||||||
|
"intensity": -3.0,
|
||||||
|
"mute": false
|
||||||
|
},
|
||||||
|
"band4": {
|
||||||
|
"bypass": false,
|
||||||
|
"intensity": -4.0,
|
||||||
|
"mute": false
|
||||||
|
},
|
||||||
|
"band5": {
|
||||||
|
"bypass": false,
|
||||||
|
"intensity": -5.0,
|
||||||
|
"mute": false
|
||||||
|
},
|
||||||
|
"band6": {
|
||||||
|
"bypass": false,
|
||||||
|
"intensity": -6.0,
|
||||||
|
"mute": false
|
||||||
|
},
|
||||||
|
"band7": {
|
||||||
|
"bypass": false,
|
||||||
|
"intensity": -7.0,
|
||||||
|
"mute": false
|
||||||
|
},
|
||||||
|
"band8": {
|
||||||
|
"bypass": false,
|
||||||
|
"intensity": -8.0,
|
||||||
|
"mute": false
|
||||||
|
},
|
||||||
|
"band9": {
|
||||||
|
"bypass": false,
|
||||||
|
"intensity": -9.0,
|
||||||
|
"mute": false
|
||||||
|
},
|
||||||
|
"band10": {
|
||||||
|
"bypass": false,
|
||||||
|
"intensity": -10.0,
|
||||||
|
"mute": false
|
||||||
|
},
|
||||||
|
"band11": {
|
||||||
|
"bypass": false,
|
||||||
|
"intensity": -11.0,
|
||||||
|
"mute": false
|
||||||
|
},
|
||||||
|
"band12": {
|
||||||
|
"bypass": false,
|
||||||
|
"intensity": -12.0,
|
||||||
|
"mute": false
|
||||||
|
},
|
||||||
|
"bypass": false,
|
||||||
|
"input-gain": 0.0,
|
||||||
|
"output-gain": 0.0
|
||||||
|
},
|
||||||
|
"equalizer#0": {
|
||||||
|
"balance": 0.0,
|
||||||
|
"bypass": false,
|
||||||
|
"input-gain": 0.0,
|
||||||
|
"left": {
|
||||||
|
"band0": {
|
||||||
|
"frequency": 32.0,
|
||||||
|
"gain": 1.1,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band1": {
|
||||||
|
"frequency": 64.0,
|
||||||
|
"gain": 1.16,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band2": {
|
||||||
|
"frequency": 125.0,
|
||||||
|
"gain": 3.33,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band3": {
|
||||||
|
"frequency": 250.0,
|
||||||
|
"gain": 1.53,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band4": {
|
||||||
|
"frequency": 500.0,
|
||||||
|
"gain": -1.83,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band5": {
|
||||||
|
"frequency": 1000.0,
|
||||||
|
"gain": -0.58,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band6": {
|
||||||
|
"frequency": 2000.0,
|
||||||
|
"gain": 1.42,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band7": {
|
||||||
|
"frequency": 4000.0,
|
||||||
|
"gain": 4.73,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band8": {
|
||||||
|
"frequency": 16000.0,
|
||||||
|
"gain": 7.62,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band9": {
|
||||||
|
"frequency": 156.38,
|
||||||
|
"gain": 2.84,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"mode": "IIR",
|
||||||
|
"num-bands": 10,
|
||||||
|
"output-gain": 0.0,
|
||||||
|
"pitch-left": 0.0,
|
||||||
|
"pitch-right": 0.0,
|
||||||
|
"right": {
|
||||||
|
"band0": {
|
||||||
|
"frequency": 32.0,
|
||||||
|
"gain": 1.1,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band1": {
|
||||||
|
"frequency": 64.0,
|
||||||
|
"gain": 1.16,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band2": {
|
||||||
|
"frequency": 125.0,
|
||||||
|
"gain": 3.33,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band3": {
|
||||||
|
"frequency": 250.0,
|
||||||
|
"gain": 1.53,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band4": {
|
||||||
|
"frequency": 500.0,
|
||||||
|
"gain": -1.83,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band5": {
|
||||||
|
"frequency": 1000.0,
|
||||||
|
"gain": -0.58,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band6": {
|
||||||
|
"frequency": 2000.0,
|
||||||
|
"gain": 1.42,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band7": {
|
||||||
|
"frequency": 4000.0,
|
||||||
|
"gain": 4.73,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band8": {
|
||||||
|
"frequency": 16000.0,
|
||||||
|
"gain": 7.62,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
},
|
||||||
|
"band9": {
|
||||||
|
"frequency": 156.38,
|
||||||
|
"gain": 2.84,
|
||||||
|
"mode": "RLC (BT)",
|
||||||
|
"mute": false,
|
||||||
|
"q": 4.36,
|
||||||
|
"slope": "x1",
|
||||||
|
"solo": false,
|
||||||
|
"type": "Bell"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"split-channels": false
|
||||||
|
},
|
||||||
|
"plugins_order": [
|
||||||
|
"equalizer#0",
|
||||||
|
"crystalizer#0"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
10
home/programs/easyeffects/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
home = {
|
||||||
|
packages = with pkgs; [
|
||||||
|
easyeffects
|
||||||
|
];
|
||||||
|
file = {
|
||||||
|
".config/easyeffects/output/JimHeadphones.json".source = ./JimHeadphones.json;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, ...}: {
|
{ pkgs, ... }: {
|
||||||
home = {
|
home = {
|
||||||
file = let
|
file = let
|
||||||
fastConf = ''
|
fastConf = ''
|
7
home/programs/gaming/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./general
|
||||||
|
./emulators
|
||||||
|
./xash3d
|
||||||
|
];
|
||||||
|
}
|
16
home/programs/gaming/emulators/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{pkgs, lib, config, ...}: {
|
||||||
|
options = {
|
||||||
|
gaming.emulators.enable = lib.mkEnableOption "Enable console emulators";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf config.gaming.emulators.enable; {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
dolphin-emu
|
||||||
|
cemu
|
||||||
|
ryujinx
|
||||||
|
duckstation
|
||||||
|
pcsx2
|
||||||
|
unstable.lime3ds
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
14
home/programs/gaming/general/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{pkgs, lib, config, ...}: {
|
||||||
|
options = {
|
||||||
|
gaming.general.enable = lib.mkEnableOption "Enable PC gaming apps";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf config.gaming.general.enable; {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
steam
|
||||||
|
steam-run
|
||||||
|
heroic
|
||||||
|
prismlauncher
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
12
home/programs/gaming/xash3d/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{pkgs, lib, config, ...}: {
|
||||||
|
options = {
|
||||||
|
gaming.xash3d.enable = lib.mkEnableOption "Enable Xash3d for Half-Life";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf config.gaming.xash3d.enable; {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
xash3d
|
||||||
|
hlsdk
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, outputs, ...}: {
|
{ pkgs, outputs, ... }: {
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
lfs.enable = true;
|
lfs.enable = true;
|
|
@ -1,5 +1,4 @@
|
||||||
{pkgs, outputs, ...}: {
|
{pkgs, outputs, ...}: {
|
||||||
# Notification daemon
|
|
||||||
services.mako = {
|
services.mako = {
|
||||||
enable = true;
|
enable = true;
|
||||||
borderColor = "#${outputs.look.colors.accent}";
|
borderColor = "#${outputs.look.colors.accent}";
|
||||||
|
@ -17,7 +16,6 @@
|
||||||
extraConfig = "on-button-right=dismiss-all\nouter-margin=10\n[mode=do-not-disturb]\ninvisible=1";
|
extraConfig = "on-button-right=dismiss-all\nouter-margin=10\n[mode=do-not-disturb]\ninvisible=1";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Script to toggle notifications using mako
|
|
||||||
home.packages = let
|
home.packages = let
|
||||||
makoToggle = pkgs.writeScriptBin "makotoggle" ''
|
makoToggle = pkgs.writeScriptBin "makotoggle" ''
|
||||||
# Run makoctl mode and store the output in a variable
|
# Run makoctl mode and store the output in a variable
|
|
@ -3,9 +3,9 @@
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
mangohud
|
mangohud
|
||||||
];
|
];
|
||||||
file = let
|
file = {
|
||||||
# Mangohud config file
|
# Mangohud config
|
||||||
mangoConf = ''
|
".config/MangoHud/MangoHud.conf".text = ''
|
||||||
table_columns=2
|
table_columns=2
|
||||||
frametime=0
|
frametime=0
|
||||||
legacy_layout=0
|
legacy_layout=0
|
||||||
|
@ -24,9 +24,6 @@
|
||||||
gpu_load_change
|
gpu_load_change
|
||||||
frame_timing
|
frame_timing
|
||||||
'';
|
'';
|
||||||
in {
|
|
||||||
# Mangohud config
|
|
||||||
".config/MangoHud/MangoHud.conf".text = mangoConf;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
19
home/programs/misc/avtools/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{ pkgs, lib, config, ... }: {
|
||||||
|
options = {
|
||||||
|
misc.avtools.enable = lib.mkEnableOption "Enable audio video tools";
|
||||||
|
};
|
||||||
|
|
||||||
|
imports = mkIf config.misc.avtools.enable [
|
||||||
|
./obs
|
||||||
|
];
|
||||||
|
|
||||||
|
config = mkIf config.misc.avtools.enable; {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
yt-dlp
|
||||||
|
spotdl
|
||||||
|
playerctl
|
||||||
|
ffmpeg
|
||||||
|
pulsemixer
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,5 +1,4 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, lib, config, ...}: {
|
||||||
# OBS with plugins
|
|
||||||
programs.obs-studio = {
|
programs.obs-studio = {
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = with pkgs.obs-studio-plugins; [
|
plugins = with pkgs.obs-studio-plugins; [
|
12
home/programs/misc/chat/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{ pkgs, lib, config, ... }: {
|
||||||
|
options = {
|
||||||
|
misc.chat.enable = lib.mkEnableOption "Enable chat clients";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf config.misc.chat.enable; {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
vesktop
|
||||||
|
fractal
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
11
home/programs/misc/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ ... }: {
|
||||||
|
imports = [
|
||||||
|
./avtools
|
||||||
|
./chat
|
||||||
|
./general
|
||||||
|
./headless
|
||||||
|
./production
|
||||||
|
./remote-desktop
|
||||||
|
./school
|
||||||
|
];
|
||||||
|
}
|
17
home/programs/misc/general/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{ pkgs, lib, config, ... }: {
|
||||||
|
options = {
|
||||||
|
misc.general.enable = lib.mkEnableOption "Enable general use apps";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf config.misc.general.enable; {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
imv
|
||||||
|
qbittorrent
|
||||||
|
libreoffice-fresh
|
||||||
|
ffmpegthumbnailer
|
||||||
|
thunderbird
|
||||||
|
protonvpn-cli_2
|
||||||
|
bc
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
19
home/programs/misc/headless/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{ pkgs, lib, config, ... }: {
|
||||||
|
options = {
|
||||||
|
misc.headless.enable = lib.mkEnableOption "Enable apps that can be used headlessly";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf config.misc.headless.enable; {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
home-manager
|
||||||
|
gotop
|
||||||
|
tcptrack
|
||||||
|
p7zip
|
||||||
|
vimv
|
||||||
|
dua
|
||||||
|
pciutils
|
||||||
|
usbutils
|
||||||
|
protonvpn-cli_2
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
15
home/programs/misc/production/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{ pkgs, lib, config, ... }: {
|
||||||
|
options = {
|
||||||
|
production.enable = lib.mkEnableOption "Enable apps used for production";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf config.misc.production.enable; {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
krita
|
||||||
|
inkscape
|
||||||
|
audacity
|
||||||
|
blender_4_2
|
||||||
|
sunvox
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
12
home/programs/misc/remote-desktop/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{ pkgs, lib, config, ... }: {
|
||||||
|
options = {
|
||||||
|
remote-desktop.enable = lib.mkEnableOption "Enable remote desktop related apps";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf misc.remote-desktop.nvidia.enable; {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
moonlight-qt
|
||||||
|
rustdesk-flutter
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
14
home/programs/misc/school/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ pkgs, lib, config, ... }: {
|
||||||
|
options = {
|
||||||
|
school.enable = lib.mkEnableOption "Enable apps needed for school";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf config.misc.school.enable; {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
remmina
|
||||||
|
freerdp
|
||||||
|
globalprotect-openconnect
|
||||||
|
zoom-us
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,5 +1,4 @@
|
||||||
{
|
{
|
||||||
# MPV settings
|
|
||||||
programs.mpv = {
|
programs.mpv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = {
|
config = {
|
|
@ -1,5 +1,4 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
# Enable NCMPCPP
|
|
||||||
programs.ncmpcpp = {
|
programs.ncmpcpp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
@ -8,10 +7,8 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable Discord Music RPC
|
|
||||||
services.mpd-discord-rpc.enable = true;
|
services.mpd-discord-rpc.enable = true;
|
||||||
|
|
||||||
# Allow terminal control of mpd
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
mpc-cli
|
mpc-cli
|
||||||
];
|
];
|
|
@ -1,5 +1,4 @@
|
||||||
{pkgs, outputs, ...}: {
|
{ pkgs, outputs, ... }: {
|
||||||
# Install Neovim and plugins
|
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
|
@ -1,12 +1,11 @@
|
||||||
{pkgs, ...}: {
|
{ pkgs, ... }: {
|
||||||
# Swappy config file
|
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
pcmanfm-qt
|
pcmanfm-qt
|
||||||
|
gnome.file-roller
|
||||||
];
|
];
|
||||||
file = let
|
file = {
|
||||||
# File manager config
|
".config/pcmanfm-qt/default/settings.conf".text = ''
|
||||||
pcmanConf = ''
|
|
||||||
[Behavior]
|
[Behavior]
|
||||||
BookmarkOpenMethod=current_tab
|
BookmarkOpenMethod=current_tab
|
||||||
ConfirmDelete=true
|
ConfirmDelete=true
|
||||||
|
@ -53,9 +52,6 @@
|
||||||
SwitchToNewTab=true
|
SwitchToNewTab=true
|
||||||
TabPaths=@Invalid()
|
TabPaths=@Invalid()
|
||||||
'';
|
'';
|
||||||
in {
|
|
||||||
# PCManFM config
|
|
||||||
".config/pcmanfm-qt/default/settings.conf".text = pcmanConf;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, ...}: {
|
{ pkgs, ... }: {
|
||||||
# Enable Ranger
|
# Enable Ranger
|
||||||
programs.ranger = {
|
programs.ranger = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -100,28 +100,34 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
# Ranger's bookmarks
|
# Ranger's bookmarks and necessary tools
|
||||||
home.file = let
|
home = {
|
||||||
rangerBookmarks = ''
|
file = let
|
||||||
# Local files
|
rangerBookmarks = ''
|
||||||
h:/home/jimbo/
|
# Local files
|
||||||
k:/home/jimbo/Downloads
|
h:/home/jimbo/
|
||||||
v:/home/jimbo/Videos
|
k:/home/jimbo/Downloads
|
||||||
c:/home/jimbo/.config
|
v:/home/jimbo/Videos
|
||||||
L:/home/jimbo/.local
|
c:/home/jimbo/.config
|
||||||
D:/mnt
|
L:/home/jimbo/.local
|
||||||
n:/etc/nixos
|
D:/mnt
|
||||||
|
n:/etc/nixos
|
||||||
|
|
||||||
# Remote files
|
# Remote files
|
||||||
a:/home/jimbo/JimboNFS
|
a:/home/jimbo/JimboNFS
|
||||||
K:/home/jimbo/JimboNFS/Downloads
|
K:/home/jimbo/JimboNFS/Downloads
|
||||||
p:/home/jimbo/JimboNFS/Photos
|
p:/home/jimbo/JimboNFS/Photos
|
||||||
P:/home/jimbo/JimboNFS/Projects
|
P:/home/jimbo/JimboNFS/Projects
|
||||||
V:/home/jimbo/JimboNFS/Videos/Random
|
V:/home/jimbo/JimboNFS/Videos/Random
|
||||||
m:/home/jimbo/JimboNFS/Music
|
m:/home/jimbo/JimboNFS/Music
|
||||||
s:/home/jimbo/JimboNFS/School
|
s:/home/jimbo/JimboNFS/School
|
||||||
'';
|
'';
|
||||||
in {
|
in {
|
||||||
".local/share/ranger/bookmarks".text = rangerBookmarks;
|
".local/share/ranger/bookmarks".text = rangerBookmarks;
|
||||||
|
};
|
||||||
|
packages = with pkgs; [
|
||||||
|
imagemagick
|
||||||
|
poppler_utils
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
|
@ -1,5 +1,4 @@
|
||||||
{pkgs, config, outputs, ...}: {
|
{ pkgs, config, outputs, ... }: {
|
||||||
# Enable Rofi
|
|
||||||
programs.rofi = {
|
programs.rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.rofi-wayland;
|
package = pkgs.rofi-wayland;
|
||||||
|
@ -124,7 +123,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home.packages = let
|
home.packages = let
|
||||||
# All my rofi scripts in one file
|
# A script to execute commands with Rofi
|
||||||
rofiScripts = pkgs.writeScriptBin "rofiscripts" ''
|
rofiScripts = pkgs.writeScriptBin "rofiscripts" ''
|
||||||
# Scratchpad function
|
# Scratchpad function
|
||||||
handle_scratchpads() {
|
handle_scratchpads() {
|
|
@ -1,19 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
# Swappy config file
|
|
||||||
home = {
|
|
||||||
packages = with pkgs; [
|
|
||||||
swappy
|
|
||||||
];
|
|
||||||
file = let
|
|
||||||
# Swappy config, for screenshot editing
|
|
||||||
swappyConfig = ''
|
|
||||||
[Default]
|
|
||||||
early_exit=true
|
|
||||||
save_dir=$HOME/Pictures/Screenshots
|
|
||||||
'';
|
|
||||||
in {
|
|
||||||
# Swappy's config
|
|
||||||
".config/swappy/config".text = swappyConfig;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{ ... }: {
|
||||||
# Enable tmux
|
# Enable tmux
|
||||||
programs.tmux = {
|
programs.tmux = {
|
||||||
enable = true;
|
enable = true;
|
11
home/server.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ ... }: {
|
||||||
|
imports = [
|
||||||
|
./default.nix
|
||||||
|
./utils/zsh
|
||||||
|
./utils/git
|
||||||
|
./programs/fastfetch
|
||||||
|
./programs/neovim
|
||||||
|
./programs/ranger
|
||||||
|
./programs/tmux
|
||||||
|
];
|
||||||
|
}
|
|
@ -1,13 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
services.gnome-keyring = {
|
|
||||||
enable = true;
|
|
||||||
components = [
|
|
||||||
"ssh"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
gnome.gnome-keyring
|
|
||||||
gnome.libgnome-keyring
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
# Nicely reload system units when changing configs
|
|
||||||
systemd.user = {
|
|
||||||
enable = true;
|
|
||||||
startServices = "sd-switch";
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,8 +1,6 @@
|
||||||
{config, pkgs, ...}: {
|
{ pkgs, ... }: {
|
||||||
# Enable Sway and write some scripts
|
|
||||||
wayland.windowManager.sway = {
|
wayland.windowManager.sway = {
|
||||||
config = {
|
config = {
|
||||||
# Use Waybar rather than Sway's
|
|
||||||
bars = [{command = "waybar";}];
|
bars = [{command = "waybar";}];
|
||||||
|
|
||||||
startup = [
|
startup = [
|
|
@ -1,14 +1,14 @@
|
||||||
{config, pkgs, outputs, ...}: {
|
{ config, pkgs, outputs, ... }: {
|
||||||
# Import modules
|
|
||||||
imports = [
|
imports = [
|
||||||
#"./swayfx.nix"
|
./hardware
|
||||||
./hardware.nix
|
./theme
|
||||||
./theme.nix
|
./hotkeys
|
||||||
./hotkeys.nix
|
./rules
|
||||||
./rules.nix
|
./autostart
|
||||||
./autostart.nix
|
./waybar
|
||||||
./waybar.nix
|
./swayshot
|
||||||
./swayshot.nix
|
./swaylock
|
||||||
|
./swayfx
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable Sway and write some scripts
|
# Enable Sway and write some scripts
|
|
@ -1,4 +1,4 @@
|
||||||
{config, pkgs, outputs, ...}: {
|
{ pkgs, outputs, ... }: {
|
||||||
wayland.windowManager.sway = {
|
wayland.windowManager.sway = {
|
||||||
config = {
|
config = {
|
||||||
# Define monitors
|
# Define monitors
|
|
@ -1,4 +1,4 @@
|
||||||
{config, pkgs, outputs, ...}: {
|
{ pkgs, outputs, ... }: {
|
||||||
wayland.windowManager.sway = {
|
wayland.windowManager.sway = {
|
||||||
config = let
|
config = let
|
||||||
# Set default modifier and variables
|
# Set default modifier and variables
|
|
@ -1,5 +1,4 @@
|
||||||
{config, pkgs, outputs, ...}: {
|
{ pkgs, outputs, ... }: {
|
||||||
# Enable Sway and write some scripts
|
|
||||||
wayland.windowManager.sway = {
|
wayland.windowManager.sway = {
|
||||||
config = {
|
config = {
|
||||||
# Assign workspaces to outputs
|
# Assign workspaces to outputs
|
||||||
|
@ -112,8 +111,8 @@
|
||||||
};
|
};
|
||||||
assigns = {
|
assigns = {
|
||||||
# Brooutputs.wsers
|
# Brooutputs.wsers
|
||||||
"${outputs.ws.w1}" = [{app_id = "JimBrooutputs.wser";}];
|
"${outputs.ws.w1}" = [{app_id = "JimBrowser";}];
|
||||||
"${outputs.ws.w1a}" = [{app_id = "AltBrooutputs.wser";}];
|
"${outputs.ws.w1a}" = [{app_id = "AltBrowser";}];
|
||||||
|
|
||||||
# Communication
|
# Communication
|
||||||
"${outputs.ws.w3a}" = [{class = "zoom";}];
|
"${outputs.ws.w3a}" = [{class = "zoom";}];
|
|
@ -1,9 +1,8 @@
|
||||||
{config, pkgs, ...}: {
|
{ pkgs, ... }: {
|
||||||
# Enable Sway and write some scripts
|
# Enable Sway and write some scripts
|
||||||
wayland.windowManager.sway = {
|
wayland.windowManager.sway = {
|
||||||
package = pkgs.unstable.sway;
|
package = pkgs.unstable.sway;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
# SwayFX specific options
|
|
||||||
blur enable
|
blur enable
|
||||||
blur_passes 3
|
blur_passes 3
|
||||||
blur_radius 5
|
blur_radius 5
|
|
@ -1,4 +1,4 @@
|
||||||
{config, pkgs, outputs, ...}: let
|
{ pkgs, outputs, ... }: let
|
||||||
swayLock = pkgs.writeScriptBin "swaylock" ''
|
swayLock = pkgs.writeScriptBin "swaylock" ''
|
||||||
# Set the lock script
|
# Set the lock script
|
||||||
lockscript() {
|
lockscript() {
|
|
@ -1,6 +1,9 @@
|
||||||
{pkgs, outputs, ...}: {
|
{ pkgs, outputs, ... }: {
|
||||||
|
imports = [
|
||||||
|
./swappy
|
||||||
|
];
|
||||||
|
|
||||||
home.packages = let
|
home.packages = let
|
||||||
# Use grim and slurp to take screenshots in multiple ways
|
|
||||||
swayShot = pkgs.writeScriptBin "swayshot" ''
|
swayShot = pkgs.writeScriptBin "swayshot" ''
|
||||||
# Swappy
|
# Swappy
|
||||||
handle_swappy() {
|
handle_swappy() {
|
14
home/sway/swayshot/swappy/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
home = {
|
||||||
|
packages = with pkgs; [
|
||||||
|
swappy
|
||||||
|
];
|
||||||
|
file = {
|
||||||
|
".config/swappy/config".text = ''
|
||||||
|
[Default]
|
||||||
|
early_exit=true
|
||||||
|
save_dir=$HOME/Pictures/Screenshots
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,12 +1,9 @@
|
||||||
{config, pkgs, outputs, ...}: {
|
{ config, pkgs, outputs, ... }: {
|
||||||
# Enable Sway and write some scripts
|
|
||||||
wayland.windowManager.sway = {
|
wayland.windowManager.sway = {
|
||||||
enable = true;
|
enable = true;
|
||||||
#package = pkgs.unstable.sway;
|
|
||||||
wrapperFeatures.gtk = true;
|
wrapperFeatures.gtk = true;
|
||||||
checkConfig = false;
|
checkConfig = false;
|
||||||
config = {
|
config = {
|
||||||
# Theming settings
|
|
||||||
colors = {
|
colors = {
|
||||||
focused = {
|
focused = {
|
||||||
border = "#${outputs.look.colors.prime}";
|
border = "#${outputs.look.colors.prime}";
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, outputs, ...}: {
|
{ pkgs, outputs, ... }: {
|
||||||
programs.waybar = let
|
programs.waybar = let
|
||||||
swayWorkspacesModule = {
|
swayWorkspacesModule = {
|
||||||
format = "{name}";
|
format = "{name}";
|
5
home/users/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{ ... }: {
|
||||||
|
imports = [
|
||||||
|
./jimbo
|
||||||
|
];
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{ ... }: {
|
||||||
home = {
|
home = {
|
||||||
username = "jimbo";
|
username = "jimbo";
|
||||||
homeDirectory = "/home/jimbo";
|
homeDirectory = "/home/jimbo";
|
7
home/utils/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ ... }: {
|
||||||
|
imports = [
|
||||||
|
./gnome-keyring
|
||||||
|
./udiskie
|
||||||
|
./zsh
|
||||||
|
];
|
||||||
|
}
|
3
home/utils/gnome-keyring/default.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{ ... }: {
|
||||||
|
services.gnome-keyring.enable = true;
|
||||||
|
}
|
|
@ -1,5 +1,4 @@
|
||||||
{
|
{ ... }: {
|
||||||
# Mount as user with udisk2
|
|
||||||
services.udiskie = {
|
services.udiskie = {
|
||||||
enable = true;
|
enable = true;
|
||||||
automount = false;
|
automount = false;
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, config, outputs, ...}: {
|
{ pkgs, config, outputs, ... }: {
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autosuggestion.enable = true;
|
autosuggestion.enable = true;
|
23
hosts/JimDesktop/configuration.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
# Base configs
|
||||||
|
./../../system
|
||||||
|
./../../system/pc.nix
|
||||||
|
|
||||||
|
# Hardware
|
||||||
|
./hardware-configuration.nix
|
||||||
|
./../../system/modules/boot/systemd
|
||||||
|
];
|
||||||
|
|
||||||
|
# Enable Nvidia drivers
|
||||||
|
drivers.nvidia.enable = true;
|
||||||
|
|
||||||
|
# Set hostname
|
||||||
|
networking.hostName = "JimDesktop";
|
||||||
|
|
||||||
|
# Force Electron to use Wayland
|
||||||
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||||
|
|
||||||
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||||
|
system.stateVersion = "24.05";
|
||||||
|
}
|
26
hosts/JimDesktop/home.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{config, ...}: {
|
||||||
|
imports = [
|
||||||
|
# Common modules
|
||||||
|
./../../home
|
||||||
|
./../../home/pc.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
# Useful
|
||||||
|
general.enable = true;
|
||||||
|
chat.enable = true;
|
||||||
|
avtools.enable = true;
|
||||||
|
production.enable = true;
|
||||||
|
obs.enable = true;
|
||||||
|
remotedesktop.enable = false;
|
||||||
|
school.enable = true;
|
||||||
|
|
||||||
|
# Gaming
|
||||||
|
pcgaming.enable = true;
|
||||||
|
emulators.enable = false;
|
||||||
|
xash3d.enable = true;
|
||||||
|
|
||||||
|
# Symlinks
|
||||||
|
home.file = {
|
||||||
|
"VMs".source = config.lib.file.mkOutOfStoreSymlink "/etc/libvirt/VMs";
|
||||||
|
};
|
||||||
|
}
|
17
hosts/JimLenovo/home.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{config, ...}: {
|
||||||
|
imports = [
|
||||||
|
# Common modules
|
||||||
|
./../../home/base.nix
|
||||||
|
./../../home/pc.nix
|
||||||
|
./../../home/users/jimbo.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
# Useful
|
||||||
|
general.enable = true;
|
||||||
|
chat.enable = true;
|
||||||
|
avtools.enable = true;
|
||||||
|
remotedesktop.enable = true;
|
||||||
|
|
||||||
|
# Gaming
|
||||||
|
pcgaming.enable = true;
|
||||||
|
}
|
|
@ -42,7 +42,7 @@
|
||||||
hardware.opengl.driSupport32Bit = lib.mkForce false;
|
hardware.opengl.driSupport32Bit = lib.mkForce false;
|
||||||
|
|
||||||
# Set the VPN IP per machine
|
# Set the VPN IP per machine
|
||||||
networking.wireguard.interfaces."${outputs.ips.wgInt}".ips = [ "${outputs.ips.wgSpan}.17/24" ];
|
networking.wireguard.interfaces."${outputs.ips.wgInt}".ips = [ "${outputs.ips.wgSpan}.17/32" ];
|
||||||
|
|
||||||
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
21
hosts/JimPine/home.nix
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{config, ...}: {
|
||||||
|
imports = [
|
||||||
|
# Common modules
|
||||||
|
./../../home/base.nix
|
||||||
|
./../../home/pc.nix
|
||||||
|
./../../home/users/jimbo.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
# Useful
|
||||||
|
general.enable = true;
|
||||||
|
chat.enable = true;
|
||||||
|
avtools.enable = true;
|
||||||
|
remotedesktop.enable = true;
|
||||||
|
|
||||||
|
# Needed to make the speaker work
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
alsa-utils
|
||||||
|
];
|
||||||
|
|
||||||
|
wayland.windowManager.sway.config.output.${outputs.displays.dI}.scale = "1.3";
|
||||||
|
}
|