Flatten home/desktop structure
This commit is contained in:
parent
4408bca62b
commit
b4d45ba6bb
|
@ -1,2 +0,0 @@
|
|||
{ ... }:
|
||||
{ imports = [ ./gtk.nix ]; }
|
|
@ -1,10 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
squeekboard
|
||||
lisgd
|
||||
];
|
||||
programs.wlogout = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 1.7 MiB |
7
home/desktop/config/hypr/hyprpaper-H0615.conf
Normal file
7
home/desktop/config/hypr/hyprpaper-H0615.conf
Normal file
|
@ -0,0 +1,7 @@
|
|||
preload = /etc/nixos/config/wallpaper/images_dark/1920x1080.png
|
||||
preload = /etc/nixos/config/wallpaper/images_dark/1920x1200.png
|
||||
preload = /etc/nixos/config/wallpaper/images_dark/1080x1920.png
|
||||
|
||||
wallpaper = HDMI-A-1,/etc/nixos/config/wallpaper/images_dark/1920x1200.png
|
||||
wallpaper = DP-1,/etc/nixos/config/wallpaper/images_dark/1080x1920.png
|
||||
wallpaper = ,/etc/nixos/config/wallpaper/images_dark/1920x1080.png
|
2
home/desktop/config/hypr/hyprpaper-Vanguard.conf
Normal file
2
home/desktop/config/hypr/hyprpaper-Vanguard.conf
Normal file
|
@ -0,0 +1,2 @@
|
|||
preload = /etc/nixos/config/wallpaper/images_dark/1920x1080.png
|
||||
wallpaper = ,/etc/nixos/config/wallpaper/images_dark/1920x1080.png
|
|
@ -9,32 +9,26 @@ in
|
|||
{
|
||||
imports = [
|
||||
hyprland.homeManagerModules.default
|
||||
./common.nix
|
||||
./swaylock.nix
|
||||
./eww.nix
|
||||
./waybar.nix
|
||||
../common/gtk.nix
|
||||
../common/dunst.nix
|
||||
../common/rofi.nix
|
||||
../xorg/xresources.nix
|
||||
./gtk.nix
|
||||
./dunst.nix
|
||||
./rofi.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
pipewire
|
||||
wireplumber
|
||||
wl-clipboard
|
||||
swayimg
|
||||
hyprpaper
|
||||
];
|
||||
programs.rofi.package = pkgs.rofi-wayland;
|
||||
xdg.configFile."hypr" = {
|
||||
source = ./config/hypr;
|
||||
# recursive = true;
|
||||
# text = "# test";
|
||||
};
|
||||
xsession.enable = true;
|
||||
programs.keychain.enableXsessionIntegration = true;
|
||||
xdg.configFile."hypr/common.conf".source = ./config/hypr/common.conf;
|
||||
xdg.configFile."hypr/keybinds.conf".source = ./config/hypr/keybinds.conf;
|
||||
xdg.configFile."hypr/window-rules.conf".source = ./config/hypr/window-rules.conf;
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
xwayland = {
|
||||
enable = true;
|
||||
hidpi = true;
|
||||
};
|
||||
xwayland = { enable = true; hidpi = true; };
|
||||
};
|
||||
}
|
|
@ -1,8 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
bluez
|
||||
];
|
||||
home.packages = with pkgs; [ bluez ];
|
||||
services.polybar = {
|
||||
enable = true;
|
||||
config = ./config/polybar/polybar.ini;
|
6
home/desktop/sway.nix
Normal file
6
home/desktop/sway.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
#xdg.configFile."sway".source = ./config/sway;
|
||||
home.packages = with pkgs; [ brightnessctl ];
|
||||
wayland.windowManager.sway = { enable = true; };
|
||||
}
|
13
home/desktop/waybar.nix
Normal file
13
home/desktop/waybar.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
bluez
|
||||
];
|
||||
# xdg.configFile."waybar/common.json".source = ./config/waybar/common.json;
|
||||
xdg.configFile."waybar" = {
|
||||
source = ./config/waybar;
|
||||
recursive = true;
|
||||
};
|
||||
programs.waybar.enable = true;
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
pipewire
|
||||
wireplumber
|
||||
wl-clipboard
|
||||
];
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
preload = ~/.nixos/wallpaper/images_dark/1920x1080.png
|
||||
preload = ~/.nixos/wallpaper/images_dark/1920x1200.png
|
||||
preload = ~/.nixos/wallpaper/images_dark/1080x1920.png
|
||||
|
||||
wallpaper = HDMI-A-1,~/.nixos/wallpaper/images_dark/1920x1200.png
|
||||
wallpaper = DP-1,~/.nixos/wallpaper/images_dark/1080x1920.png
|
||||
wallpaper = ,~/.nixos/wallpaper/images_dark/1920x1080.png
|
|
@ -1,2 +0,0 @@
|
|||
preload = ~/.nixos/wallpaper/images_dark/5120x2880.png
|
||||
wallpaper = HDMI-A-1,~/.nixos/wallpaper/images_dark/5120x2880.png
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"include": ["~/.config/waybar/modules.json", "~/.config/waybar/layout.json"],
|
||||
"output": "HDMI-A-1",
|
||||
"modules-left": ["custom/launcher", "cpu", "memory", "temperature"],
|
||||
"modules-center": ["wlr/workspaces"],
|
||||
"modules-right": [
|
||||
"pulseaudio",
|
||||
"bluetooth",
|
||||
"network",
|
||||
"backlight",
|
||||
"battery",
|
||||
"battery#bat2",
|
||||
"clock",
|
||||
"tray",
|
||||
"custom/power"
|
||||
]
|
||||
}
|
||||
|
||||
// vim: ft=json
|
|
@ -1,11 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [ ./common-wayland.nix ];
|
||||
#xdg.configFile."sway".source = ./config/sway;
|
||||
home.packages = with pkgs; [
|
||||
brightnessctl
|
||||
];
|
||||
wayland.windowManager.sway = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
bluez
|
||||
];
|
||||
xdg.configFile."waybar".source = ./config/waybar;
|
||||
programs.waybar.enable = true;
|
||||
}
|
|
@ -1,7 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./xresources.nix
|
||||
./gtk.nix
|
||||
./bspwm.nix
|
||||
./sxhkd.nix
|
|
@ -1,5 +0,0 @@
|
|||
{ ... }:
|
||||
{
|
||||
xsession.enable = true;
|
||||
programs.keychain.enableXsessionIntegration = true;
|
||||
}
|
|
@ -1,6 +1,5 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [ ./common.nix ];
|
||||
xresources.extraConfig = builtins.readFile
|
||||
(
|
||||
pkgs.fetchFromGitHub
|
Loading…
Reference in a new issue