feat: huge batch of changes

This commit is contained in:
Nydragon 2024-06-29 01:34:27 +02:00
parent 0f51f7ae88
commit 51c804028f
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
9 changed files with 166 additions and 153 deletions

View file

@ -1,89 +0,0 @@
{
stateVersion,
username,
homeDirectory,
pkgs,
...
}:
{
imports = [
./firefox
./fish
./sway
./neovim
./rofi
./thunderbird
./git
./vscodium
./themes/catppuccin.nix
];
dconf = {
enable = true;
settings."org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
services.blueman-applet.enable = true;
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
home = {
inherit stateVersion;
inherit username;
inherit homeDirectory;
packages =
let
pk = with pkgs; [
digikam
fragments
element-desktop
libreoffice
loupe
gnome.seahorse
gimp
vlc
thunderbird
keepassxc
gnome.nautilus
rofi-power-menu
lollypop
protonmail-bridge-gui
varia
signal-desktop
calibre
# Proprietary
postman
mongodb-compass
obsidian
# CLI tools
delta
fzf
jhead
fdupes
exiftool
sshfs
zip
unzip
lazygit
fd
ripgrep
swaybg
];
scripts = with import ./scripts { inherit pkgs; }; [
screenshot
set-background
nixedit
];
in
scripts ++ pk;
};
}

View file

@ -74,13 +74,24 @@ lib.mkIf osConfig.programs.hyprland.enable {
vibrancy = 0.1696; vibrancy = 0.1696;
}; };
}; };
windowrulev2 = [ windowrulev2 =
"float,initialClass:(com.nextcloud.desktopclient.nextcloud)" let
"bordercolor rgba(FF0000AA) rgba(88080877),fullscreen:1" mkRegexList = list: "^(${(lib.strings.concatStringsSep "|" list)})$";
"float,initialClass:(org.keepassxc.KeePassXC)" in
"workspace 2,initialClass:(firefox)" [
"workspace 5,initialClass:(lollypop)" "float,initialClass:(${
]; mkRegexList [
"com.nextcloud.desktopclient.nextcloud"
"soffice"
"xdg-desktop-portal-gtk"
]
})"
"bordercolor rgb(e50000) rgb(ff8d00) rgb(ffee00) rgb(028121) rgb(004cff) rgb(770088), fullscreen:1"
"workspace 2,initialClass:(${mkRegexList [ "firefox" ]})"
"workspace 3,initialClass:(${mkRegexList [ "obsidian" ]})"
"workspace 4,initialClass:(${mkRegexList [ "discord" ]})"
"workspace 5,initialClass:(${mkRegexList [ "lollypop" ]})"
];
# https://wiki.hyprland.org/Configuring/Variables/#animations # https://wiki.hyprland.org/Configuring/Variables/#animations
animations = { animations = {
@ -106,11 +117,6 @@ lib.mkIf osConfig.programs.hyprland.enable {
preserve_split = true; # You probably want this preserve_split = true; # You probably want this
}; };
# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more
#master = {
#new_status = "master";
#};
# https://wiki.hyprland.org/Configuring/Variables/#misc # https://wiki.hyprland.org/Configuring/Variables/#misc
misc = { misc = {
force_default_wallpaper = -1; # Set to 0 or 1 to disable the anime mascot wallpapers force_default_wallpaper = -1; # Set to 0 or 1 to disable the anime mascot wallpapers
@ -126,7 +132,7 @@ lib.mkIf osConfig.programs.hyprland.enable {
"$mod, Return, exec, ${pkgs.alacritty}/bin/alacritty" "$mod, Return, exec, ${pkgs.alacritty}/bin/alacritty"
#"$mod, S, exec, rofi -show clipboard -show-icons" #"$mod, S, exec, rofi -show clipboard -show-icons"
"$mod SHIFT, Q, killactive," "$mod SHIFT, Q, killactive,"
"$mod SHIFT, P, exec, rofi -show p -modi p:rofi-power-menu" "$mod SHIFT, P, exec, rofi -show p -modi p:${pkgs.rofi-power-menu}/bin/rofi-power-menu"
"$mod, P, exec, cliphist wipe & ${pkgs.hyprlock}/bin/hyprlock" "$mod, P, exec, cliphist wipe & ${pkgs.hyprlock}/bin/hyprlock"
"$mod SHIFT, C, exec, hyprctl reload" "$mod SHIFT, C, exec, hyprctl reload"
"$mod, left, movefocus, l" "$mod, left, movefocus, l"
@ -143,6 +149,19 @@ lib.mkIf osConfig.programs.hyprland.enable {
"$mod, U, exec, ${pkgs.hyprpicker}/bin/hyprpicker -r -z & ${pkgs.hyprshot}/bin/hyprshot -o ~/Pictures/screenshots -m region" "$mod, U, exec, ${pkgs.hyprpicker}/bin/hyprpicker -r -z & ${pkgs.hyprshot}/bin/hyprshot -o ~/Pictures/screenshots -m region"
"$mod CTRL, U, exec, ${pkgs.hyprpicker}/bin/hyprpicker -r -z & ${pkgs.hyprshot}/bin/hyprshot -o ~/Pictures/screenshots -m window" "$mod CTRL, U, exec, ${pkgs.hyprpicker}/bin/hyprpicker -r -z & ${pkgs.hyprshot}/bin/hyprshot -o ~/Pictures/screenshots -m window"
"$mod SHIFT, U, exec, ${pkgs.hyprshot}/bin/hyprshot -o ~/Pictures/screenshots -m active -m output" "$mod SHIFT, U, exec, ${pkgs.hyprshot}/bin/hyprshot -o ~/Pictures/screenshots -m active -m output"
#: Brightness and Media {{{
",XF86MonBrightnessUp, exec, ${pkgs.brightnessctl}/bin/brightnessctl s +10%"
",XF86MonBrightnessDown, exec, ${pkgs.brightnessctl}/bin/brightnessctl s 10%-"
",XF86AudioRaiseVolume, exec, ${pkgs.pamixer}/bin/pamixer -i 5"
",XF86AudioLowerVolume, exec, ${pkgs.pamixer}/bin/pamixer -d 5"
",XF86AudioMicMute, exec, ${pkgs.pamixer}/bin/pamixer --default-source -m"
",XF86AudioMute, exec, ${pkgs.pamixer}/bin/pamixer -t"
",XF86AudioPlay, exec, ${pkgs.playerctl}/bin/playerctl play-pause"
",XF86AudioPause, exec, ${pkgs.playerctl}/bin/playerctl play-pause"
",XF86AudioNext, exec, ${pkgs.playerctl}/bin/playerctl next"
",XF86AudioPrev, exec, ${pkgs.playerctl}/bin/playerctl previous"
#: }}}
] ]
++ ( ++ (
# workspaces # workspaces

View file

@ -65,7 +65,7 @@
lib.mkOptionDefault { lib.mkOptionDefault {
# TODO: Update to use nixpkgs version of cliphist # TODO: Update to use nixpkgs version of cliphist
"${mod}+p" = "exec cliphist wipe & ${pkgs.swaylock}/bin/swaylock"; "${mod}+p" = "exec cliphist wipe & ${pkgs.swaylock}/bin/swaylock";
"${mod}+Shift+p" = "exec rofi -show p -modi p:rofi-power-menu"; "${mod}+Shift+p" = "exec rofi -show p -modi p:${pkgs.rofi-power-menu}/bin/rofi-power-menu";
# Reload the config file # Reload the config file
"${mod}+Shift+c" = "reload"; "${mod}+Shift+c" = "reload";
# Kill the focused window # Kill the focused window

View file

@ -20,7 +20,7 @@
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true; hardware.bluetooth.powerOnBoot = true;
services.blueman.enable = true; services.blueman.enable = true;
services.flatpak.enable = true;
services.greetd = { services.greetd = {
enable = true; enable = true;
settings = rec { settings = rec {
@ -31,6 +31,13 @@
default_session = initial_session; default_session = initial_session;
}; };
}; };
#: Power Consumption {{{
services.logind = {
powerKey = "hibernate";
};
#: }}}
xdg.portal = { xdg.portal = {
enable = true; enable = true;
config.common.default = "*"; config.common.default = "*";

View file

@ -48,10 +48,10 @@
gnome.seahorse gnome.seahorse
gimp gimp
vlc vlc
pavucontrol
thunderbird thunderbird
keepassxc keepassxc
gnome.nautilus gnome.nautilus
rofi-power-menu
lollypop lollypop
protonmail-bridge-gui protonmail-bridge-gui
varia varia
@ -59,6 +59,9 @@
calibre calibre
alacritty alacritty
# proprietary
obsidian
# CLI tools # CLI tools
delta delta
fzf fzf

View file

@ -1,24 +1,18 @@
# vim:fileencoding=utf-8:foldmethod=marker # vim:fileencoding=utf-8:foldmethod=marker
{ {
config,
pkgs, pkgs,
lib,
inputs, inputs,
system,
username, username,
hostname, hostname,
... ...
}: }:
let
stateVersion = "23.11";
homeDirectory = "/home/${username}";
in
{ {
imports = [ imports = [
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
../../modules ../../modules
./home.nix
]; ];
# Bootloader. # Bootloader.
@ -40,36 +34,10 @@ in
variant = ""; variant = "";
}; };
services.logind = {
lidSwitch = "suspend-then-hibernate";
powerKey = "hibernate";
};
systemd.sleep.extraConfig = '' systemd.sleep.extraConfig = ''
HibernateDelaySec=1200 HibernateDelaySec=1200
''; '';
xdg.mime = {
enable = true;
defaultApplications =
let
fileManager = "org.gnome.Nautilus.desktop";
browser = "firefox.desktop";
in
{
"inode/directory" = fileManager;
"application/zip" = fileManager;
"application/pdf" = browser;
"x-www-browser" = browser;
"text/html" = browser;
"image/*" = "org.gnome.Loupe.desktop";
"image/png" = "org.gnome.Loupe.desktop";
"image/jpeg" = "org.gnome.Loupe.desktop";
"x-scheme-handler/http" = browser;
"x-scheme-handler/https" = browser;
};
};
programs = { programs = {
dconf.enable = true; dconf.enable = true;
steam.enable = true; steam.enable = true;
@ -79,19 +47,6 @@ in
sway.enable = true; sway.enable = true;
}; };
home-manager.users.${username} = import ../../home {
inherit
config
pkgs
system
inputs
stateVersion
username
lib
homeDirectory
;
};
#: Virtualisation {{{ #: Virtualisation {{{
virtualisation.docker.enable = true; virtualisation.docker.enable = true;
virtualisation.docker.enableOnBoot = false; virtualisation.docker.enableOnBoot = false;
@ -104,6 +59,12 @@ in
#: }}} #: }}}
#: Power Consumption {{{ #: Power Consumption {{{
services.logind = {
lidSwitch = "suspend-then-hibernate";
powerKey = "hibernate";
};
services.thermald.enable = true; services.thermald.enable = true;
services.tlp = { services.tlp = {
@ -245,5 +206,5 @@ in
# this value at the release version of the first install of this system. # this value at the release version of the first install of this system.
# 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 = stateVersion; # Did you read the comment? system.stateVersion = "23.11"; # Did you read the comment?
} }

88
hosts/marr/home.nix Normal file
View file

@ -0,0 +1,88 @@
{
username,
pkgs,
config,
...
}:
{
home-manager.users.${username} = {
imports = [
../../home/firefox
../../home/fish
../../home/sway
../../home/neovim
../../home/rofi
../../home/thunderbird
../../home/git
../../home/vscodium
../../home/themes/catppuccin.nix
];
dconf = {
enable = true;
settings."org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
services.blueman-applet.enable = true;
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
home = {
stateVersion = config.system.stateVersion;
inherit username;
packages =
let
pk = with pkgs; [
digikam
fragments
element-desktop
libreoffice
loupe
gnome.seahorse
gimp
vlc
thunderbird
keepassxc
gnome.nautilus
lollypop
protonmail-bridge-gui
varia
signal-desktop
calibre
# Proprietary
postman
mongodb-compass
obsidian
# CLI tools
delta
fzf
jhead
fdupes
exiftool
sshfs
zip
unzip
lazygit
fd
ripgrep
swaybg
];
scripts = with import ../../home/scripts { inherit pkgs; }; [
screenshot
set-background
nixedit
];
in
scripts ++ pk;
};
};
}

View file

@ -12,5 +12,6 @@
./programs/steam.nix ./programs/steam.nix
./programs/hyprland.nix ./programs/hyprland.nix
./home-manager.nix ./home-manager.nix
./system/mime.nix
]; ];
} }

View file

@ -1 +1,24 @@
{ } {
xdg.mime = {
enable = true;
defaultApplications =
let
fileManager = "org.gnome.Nautilus.desktop";
browser = "firefox.desktop";
in
{
"inode/directory" = fileManager;
"application/zip" = fileManager;
"application/pdf" = browser;
"x-www-browser" = browser;
"text/html" = browser;
"application/vnd.comicbook+zip" = "calibre-ebook-viewer.desktop";
"application/epub+zip" = "calibre-ebook-viewer.desktop";
"image/*" = "org.gnome.Loupe.desktop";
"image/png" = "org.gnome.Loupe.desktop";
"image/jpeg" = "org.gnome.Loupe.desktop";
"x-scheme-handler/http" = browser;
"x-scheme-handler/https" = browser;
};
};
}