biggg refactor, holy shit

This commit is contained in:
Noa Aarts 2024-11-11 11:16:27 +01:00
parent a3da6ab3af
commit 4c55bc97f6
Signed by: noa
GPG key ID: 1850932741EFF672
10 changed files with 111 additions and 394 deletions

View file

@ -1,3 +1,9 @@
{
enableGraphical ? false,
enableFlut ? false,
enableGames ? false,
displays ? [ ],
}:
{ {
config, config,
pkgs, pkgs,
@ -21,12 +27,12 @@ let
in in
{ {
imports = [ imports = [
../../modules/hyprland.nix ../modules/hyprland.nix
../../modules/games ../modules/games
../../modules/applications ../modules/applications
../../common/nvim/nvim.nix ./nvim/nvim.nix
../../common/discord/discord.nix ./discord/discord.nix
../../common/spotify.nix ./spotify.nix
]; ];
home = { home = {
@ -35,14 +41,21 @@ in
"programming".source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/Documents/programming/"; "programming".source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/Documents/programming/";
}; };
homeDirectory = "/home/${me.nickname}"; homeDirectory = "/home/${me.nickname}";
packages = with pkgs; [ packages =
with pkgs;
[
file file
unzip unzip
zip zip
dig dig
mtr mtr
]
++ lib.optionals enableFlut [
inputs.flurry.packages.${system}.flurry
inputs.tsunami.packages.${system}.tsunami
]
++ lib.optionals enableGraphical [
signal-desktop signal-desktop
dconf dconf
@ -55,11 +68,8 @@ in
yubico-piv-tool yubico-piv-tool
libreoffice-qt6 libreoffice-qt6
inputs.flurry.packages.${system}.flurry
inputs.tsunami.packages.${system}.tsunami
]; ];
pointerCursor = { pointerCursor = lib.mkIf enableGraphical {
gtk.enable = true; gtk.enable = true;
name = cursor_name; name = cursor_name;
size = 32; size = 32;
@ -69,9 +79,12 @@ in
''; '';
}; };
preferXdgDirectories = true; preferXdgDirectories = true;
sessionVariables = { sessionVariables =
{
EDITOR = "nvim"; EDITOR = "nvim";
TERM = "kitty"; TERM = "kitty";
}
// lib.mkIf enableGraphical {
GDK_BACKEND = "wayland,x11"; GDK_BACKEND = "wayland,x11";
QT_QPA_PLATFORM = "wayland;xcb"; QT_QPA_PLATFORM = "wayland;xcb";
CLUTTER_BACKEND = "wayland"; CLUTTER_BACKEND = "wayland";
@ -88,7 +101,7 @@ in
modules = { modules = {
hyprland = { hyprland = {
enable = true; enable = enableGraphical;
displays = [ displays = [
{ {
name = "DP-3"; name = "DP-3";
@ -110,17 +123,17 @@ in
} }
]; ];
}; };
games.enable = true; games.enable = enableGraphical && enableGames;
apps = { apps = {
enable = true; firefox.enable = enableGraphical;
kitty.enable = enableGraphical;
git = { git = {
enable = true;
name = me.fullName; name = me.fullName;
email = me.email; email = me.email;
do_sign = true; do_sign = true;
}; };
thunderbird = { thunderbird.enable = enableGraphical;
enable = true;
};
neovim.enableLanguages = true; neovim.enableLanguages = true;
}; };
}; };
@ -134,7 +147,7 @@ in
}; };
dconf = { dconf = {
enable = true; enable = enableGraphical;
settings = { settings = {
"org/gnome/desktop/interface" = { "org/gnome/desktop/interface" = {
color-scheme = "prefer-dark"; color-scheme = "prefer-dark";
@ -143,7 +156,7 @@ in
}; };
gtk = { gtk = {
enable = true; enable = enableGraphical;
gtk2.extraConfig = '' gtk2.extraConfig = ''
gtk-enable-animations=1 gtk-enable-animations=1
gtk-primary-button-warps-slider=1 gtk-primary-button-warps-slider=1
@ -184,7 +197,7 @@ in
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
home-manager.enable = true; home-manager.enable = true;
# add `play funny video` as alias because why not # add `play funny video` as alias because why not
zsh.shellAliases.bzzt = ''nix-shell -p mpv --command "mpv ~/Videos/BZZZM.mp4"''; zsh.shellAliases.bzzt = lib.mkIf enableGraphical ''nix-shell -p mpv --command "mpv ~/Videos/BZZZM.mp4"'';
# lsd makes files look better # lsd makes files look better
lsd = { lsd = {
enable = true; enable = true;
@ -192,7 +205,7 @@ in
}; };
# manpages can be quite useful # manpages can be quite useful
man.enable = true; man.enable = true;
obs-studio.enable = true; obs-studio.enable = enableGraphical;
ssh = { ssh = {
enable = true; enable = true;
compression = true; compression = true;
@ -228,7 +241,7 @@ in
}; };
qt = { qt = {
enable = true; enable = enableGraphical;
platformTheme.name = "adwaita"; platformTheme.name = "adwaita";
style.name = "adwaita-dark"; style.name = "adwaita-dark";
}; };
@ -236,13 +249,12 @@ in
services = { services = {
syncthing = { syncthing = {
enable = true; enable = true;
tray.enable = true;
}; };
gpg-agent = { gpg-agent = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
enableSshSupport = true; enableSshSupport = true;
pinentryPackage = pkgs.pinentry-qt; pinentryPackage = lib.mkIf enableGraphical pkgs.pinentry-qt;
}; };
}; };

View file

@ -119,7 +119,31 @@
inherit nix-colors; inherit nix-colors;
}; };
users = { users = {
"noa" = import ./home.nix; "noa" = (import ../../common/home.nix) {
enableGraphical = true;
enableFlut = true;
enableGames = true;
displays = [
{
name = "DP-3";
horizontal = 2560;
vertical = 1440;
horizontal-offset = 2560;
vertical-offset = 0;
refresh-rate = 360;
scale = "1";
}
{
name = "DP-2";
horizontal = 2560;
vertical = 1440;
horizontal-offset = 0;
vertical-offset = 0;
refresh-rate = 144;
scale = "1";
}
];
};
"root" = import ./root.nix; "root" = import ./root.nix;
}; };
}; };

View file

@ -41,9 +41,9 @@
modules = { modules = {
apps = { apps = {
enable = true;
git = { git = {
name = "Noa Aarts"; enable = true;
name = "Noa Aarts (bot)";
email = "noa@voorwaarts.nl"; email = "noa@voorwaarts.nl";
}; };
}; };

View file

@ -79,7 +79,22 @@
inherit nix-colors; inherit nix-colors;
}; };
users = { users = {
"noa" = import ./home.nix; "noa" = (import ../../common/home.nix) {
enableGraphical = true;
enableFlut = false;
enableGames = true;
displays = [
{
name = "eDP-1";
horizontal = 2256;
vertical = 1504;
horizontal-offset = 0;
vertical-offset = 0;
refresh-rate = 60;
scale = "1";
}
];
};
"root" = import ./root.nix; "root" = import ./root.nix;
}; };
}; };

View file

@ -1,211 +0,0 @@
{
config,
pkgs,
inputs,
lib,
...
}:
{
imports = [
../../modules/hyprland.nix
../../modules/games
../../modules/applications
../../common/nvim/nvim.nix
../../common/discord/discord.nix
../../common/spotify.nix
];
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "noa";
home.homeDirectory = "/home/noa";
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes.
#
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "23.11"; # Please read the comment before changing.
nixpkgs.config.allowUnfree = true;
modules = {
hyprland = {
enable = true;
displays = [
{
name = "eDP-1";
horizontal = 2256;
vertical = 1504;
horizontal-offset = 0;
vertical-offset = 0;
refresh-rate = 60;
scale = "1";
}
{
name = "DP-1";
horizontal = 1920;
vertical = 1080;
horizontal-offset = 2256;
vertical-offset = 0;
refresh-rate = 60;
scale = "1";
}
];
};
games.enable = true;
apps = {
enable = true;
git = {
name = "Noa Aarts";
email = "noa@voorwaarts.nl";
do_sign = true;
};
thunderbird = {
enable = true;
};
neovim.enableLanguages = true;
};
};
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs; [
file
unzip
zip
dig
mtr
obs-studio
wayvnc
signal-desktop
btop
dconf
pipewire
lsd
localsend
blueberry
qbittorrent
keepassxc
yubikey-manager-qt
yubico-piv-tool
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file = {
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
# # symlink to the Nix store copy.
# ".screenrc".source = dotfiles/screenrc;
# # You can also set the file content immediately.
# ".gradle/gradle.properties".text = ''
# org.gradle.console=verbose
# org.gradle.daemon.idletimeout=3600000
# '';
"ykcs/ykcs11.so".source = "${pkgs.yubico-piv-tool}/lib/libykcs11.so";
};
# Home Manager can also manage your environment variables through
# 'home.sessionVariables'. If you don't want to manage your shell through Home
# Manager then you have to manually source 'hm-session-vars.sh' located at
# either
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/noa/etc/profile.d/hm-session-vars.sh
#
home.sessionVariables = {
EDITOR = "nvim";
TERM = "kitty";
GDK_BACKEND = "wayland,x11";
QT_QPA_PLATFORM = "wayland;xcb";
CLUTTER_BACKEND = "wayland";
XDG_CURRENT_DESKTOP = "Hyprland";
XDG_SESSION_TYPE = "wayland";
XDG_SESSION_DESKTOP = "Hyprland";
WLR_NO_HARDWARE_CURSORS = "1";
};
xdg = {
enable = true;
userDirs = {
enable = true;
createDirectories = true;
};
};
dconf = {
enable = true;
settings = {
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
};
};
};
gtk = {
enable = true;
gtk2.extraConfig = ''
gtk-enable-animations=1
gtk-primary-button-warps-slider=1
gtk-toolbar-style=3
gtk-menu-images=1
gtk-button-images=1
gtk-sound-theme-name="ocean"
gtk-font-name="Noto Sans, 10"
'';
theme = {
name = "Adwaita-dark";
package = pkgs.gnome-themes-extra;
};
};
# Let Home Manager install and manage itself.
programs = {
home-manager.enable = true;
};
services.syncthing = {
enable = true;
};
home.pointerCursor =
let
getFrom = url: hash: name: {
gtk.enable = true;
x11.enable = true;
name = name;
size = 32;
package = pkgs.runCommand "moveUp" { } ''
mkdir -p $out/share/icons
ln -s ${
pkgs.fetchzip {
url = url;
hash = hash;
}
} $out/share/icons/${name}
'';
};
in
getFrom
"https://github.com/ful1e5/Bibata_Cursor_Rainbow/releases/download/v1.1.2/Bibata-Rainbow-Modern.tar.gz"
"sha256-Ps+IKPwQoRwO9Mqxwc/1nHhdBT2R25IoeHLKe48uHB8="
"Bibata-Rainbow-Modern";
}

View file

@ -41,8 +41,8 @@
modules = { modules = {
apps = { apps = {
enable = true;
git = { git = {
enable = true;
name = "Noa Aarts"; name = "Noa Aarts";
email = "noa@voorwaarts.nl"; email = "noa@voorwaarts.nl";
}; };

View file

@ -88,7 +88,9 @@
inherit nix-colors; inherit nix-colors;
}; };
users = { users = {
"noa" = import ./home.nix; "noa" = (import ../../common/home.nix) {
enableFlut = true;
};
"root" = import ./root.nix; "root" = import ./root.nix;
}; };
}; };

View file

@ -1,110 +0,0 @@
{
config,
pkgs,
mineflake,
inputs,
...
}:
{
imports = [
../../modules/applications
../../common/nvim/nvim.nix
];
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "noa";
home.homeDirectory = "/home/noa";
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes.
#
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "23.11"; # Please read the comment before changing.
nixpkgs.config.allowUnfree = true;
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs; [
file
unzip
zip
dig
mtr
btop
lsd
lm_sensors
# Programming langs
go
nodejs
];
modules = {
apps.git = {
enable = true;
name = "Noa Aarts";
email = "noa@voorwaarts.nl";
};
apps.zsh.enable = true;
apps.neovim.enableLanguages = true;
};
services.syncthing = {
enable = true;
};
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file = {
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
# # symlink to the Nix store copy.
# ".screenrc".source = dotfiles/screenrc;
# # You can also set the file content immediately.
# ".gradle/gradle.properties".text = ''
# org.gradle.console=verbose
# org.gradle.daemon.idletimeout=3600000
# '';
};
# Home Manager can also manage your environment variables through
# 'home.sessionVariables'. If you don't want to manage your shell through Home
# Manager then you have to manually source 'hm-session-vars.sh' located at
# either
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/noa/etc/profile.d/hm-session-vars.sh
#
home.sessionVariables = {
EDITOR = "nvim";
};
xdg = {
enable = true;
};
xdg.userDirs = {
enable = true;
createDirectories = true;
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}

View file

@ -8,9 +8,6 @@ let
cfg = config.modules.apps; cfg = config.modules.apps;
in in
{ {
options.modules.apps = {
enable = lib.mkEnableOption "enable desktop applications";
};
imports = [ imports = [
./firefox.nix ./firefox.nix
@ -20,15 +17,4 @@ in
./thunderbird.nix ./thunderbird.nix
]; ];
config = lib.mkIf cfg.enable {
modules.apps = {
firefox.enable = true;
git.enable = true;
kitty.enable = true;
zsh = {
enable = true;
enableAliases = true;
};
};
};
} }

View file

@ -10,13 +10,12 @@ in
{ {
options.modules.apps.zsh = { options.modules.apps.zsh = {
enable = lib.mkEnableOption "enable zsh with oh-my-zsh"; enable = lib.mkEnableOption "enable zsh with oh-my-zsh";
enableAliases = lib.mkEnableOption "whether to enable shellAliases";
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
programs.zsh = { programs.zsh = {
enable = true; enable = true;
shellAliases = lib.mkIf cfg.enableAliases { shellAliases = {
update = "nix flake update --commit-lock-file $HOME/nixos && sudo nixos-rebuild switch --flake $HOME/nixos"; update = "nix flake update --commit-lock-file $HOME/nixos && sudo nixos-rebuild switch --flake $HOME/nixos";
nb = "nix build -L"; nb = "nix build -L";
ns = "nix shell -L"; ns = "nix shell -L";