Update J0162 home config
This commit is contained in:
parent
9f5f85c963
commit
395c47e31f
|
@ -1,6 +1,5 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./home
|
|
||||||
./common.nix
|
./common.nix
|
||||||
./hardware/audio.nix
|
./hardware/audio.nix
|
||||||
./hardware/bluetooth.nix
|
./hardware/bluetooth.nix
|
||||||
|
@ -9,6 +8,7 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.hostName = "J0162"; # Define your hostname.
|
networking.hostName = "J0162"; # Define your hostname.
|
||||||
|
services.xserver.displayManager.defaultSession = "hyprland";
|
||||||
|
|
||||||
users.users.elitherl = {
|
users.users.elitherl = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
|
|
@ -1,10 +1,19 @@
|
||||||
{...}: {
|
{pkgs, ...}: {
|
||||||
imports = [../work.nix ../desktop/hyprland.nix];
|
imports = [../work.nix ../desktop/hyprland.nix];
|
||||||
home.username = "elitherl";
|
home.username = "elitherl";
|
||||||
home.homeDirectory = "/home/elitherl";
|
home.homeDirectory = "/home/elitherl";
|
||||||
home.stateVersion = "22.11";
|
home.stateVersion = "22.11";
|
||||||
|
home.packages = with pkgs; [zotero];
|
||||||
|
|
||||||
|
programs.fish.functions.nvsync = ''
|
||||||
|
rsync -avz --filter=':- .gitignore' --exclude='.git*'\
|
||||||
|
--delete-during --delete-excluded\
|
||||||
|
$HOME/.config/nvim/ heimdall003.jet.uk:.config/nvim
|
||||||
|
rsync -avz --filter=':- .gitignore' --exclude='.git*'\
|
||||||
|
--delete-during --delete-excluded\
|
||||||
|
$HOME/.config/nvim/ freia:.config/nvim
|
||||||
|
'';
|
||||||
|
|
||||||
programs.fish.shellAbbrs.hypr = "exec Hyprland";
|
|
||||||
xdg.configFile."hypr/hyprpaper.conf".source = ./hypr/hyprpaper.conf;
|
xdg.configFile."hypr/hyprpaper.conf".source = ./hypr/hyprpaper.conf;
|
||||||
wayland.windowManager.hyprland.extraConfig = builtins.readFile ./hypr/hyprland.conf;
|
wayland.windowManager.hyprland.extraConfig = builtins.readFile ./hypr/hyprland.conf;
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
|
@ -22,12 +31,11 @@
|
||||||
"temperature"
|
"temperature"
|
||||||
"pulseaudio"
|
"pulseaudio"
|
||||||
"network"
|
"network"
|
||||||
"bluetooth"
|
|
||||||
"backlight"
|
"backlight"
|
||||||
"battery"
|
"battery"
|
||||||
"battery#bat2"
|
|
||||||
"tray"
|
"tray"
|
||||||
];
|
];
|
||||||
|
"wlr/workspaces" = {"format-icons" = {"5" = "";};};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1 +1,7 @@
|
||||||
source=./common.conf
|
source=./common.conf
|
||||||
|
|
||||||
|
windowrule = float, title:^([Zz]oom).*$
|
||||||
|
windowrule = float, ^(Nxplayer.bin)$
|
||||||
|
windowrule = center, title:^([Zz]oom).*$
|
||||||
|
windowrule = workspace 4, title:^([Zz]oom).*$
|
||||||
|
windowrule = workspace 5 silent, ^(Nxplayer.bin)$
|
||||||
|
|
Loading…
Reference in a new issue