Compare commits
5 Commits
7410e0e0a2
...
94cad97ba9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
94cad97ba9 | ||
|
|
59b1f8b632 | ||
|
|
de7db470ae | ||
|
|
336c395b56 | ||
|
|
dbed42316a |
@@ -1,22 +0,0 @@
|
||||
{
|
||||
config.flake.factory.hyprpaper = mappings: { config
|
||||
, osConfig
|
||||
, lib
|
||||
, ...
|
||||
}: {
|
||||
services.hyprpaper = assert osConfig.programs.hyprland.enable; {
|
||||
enable = true;
|
||||
settings = {
|
||||
preload = map ({ path, ... }: path) mappings;
|
||||
wallpaper =
|
||||
map
|
||||
({ monitor
|
||||
, path
|
||||
, prefix ? ""
|
||||
,
|
||||
}: "${monitor},${prefix}${path}")
|
||||
mappings;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -5,7 +5,7 @@
|
||||
imports = with inputs.self.factory; [
|
||||
(mount-cifs {
|
||||
host = "duke.veltnet";
|
||||
resource = "home";
|
||||
resource = "smb-share";
|
||||
destination = "/home/weckyy702/duke";
|
||||
credentials_path = "${config.age.secrets.nas-creds.path}";
|
||||
UID = "weckyy702";
|
||||
|
||||
@@ -3,21 +3,22 @@
|
||||
imports = with inputs.self.modules.nixos; [
|
||||
weckyy702
|
||||
steam
|
||||
mullvad
|
||||
];
|
||||
|
||||
home-manager.users.weckyy702 = { config, ... }: {
|
||||
imports = with inputs.self.modules.homeManager;
|
||||
with inputs.self.factory; [
|
||||
(hyprpaper {
|
||||
wallpaper_path = "${inputs.assets}/horizontal_16x9.png";
|
||||
monitor_names = [
|
||||
"DP-1"
|
||||
"HDMI-A-1"
|
||||
];
|
||||
(wpaperd {
|
||||
default = {
|
||||
path = "${inputs.assets}/horizontal_16x9.png";
|
||||
};
|
||||
})
|
||||
|
||||
vesktop
|
||||
spicetify
|
||||
borgmatic
|
||||
|
||||
qbittorrent
|
||||
];
|
||||
};
|
||||
|
||||
@@ -1,11 +1,4 @@
|
||||
{ inputs, ... }: {
|
||||
flake-file.inputs = {
|
||||
aghpb = {
|
||||
url = "github:cat-milk/Anime-Girls-Holding-Programming-Books";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
||||
flake.modules.homeManager.tux-hyprland = {
|
||||
imports = with inputs.self.modules.homeManager; [
|
||||
ashell
|
||||
|
||||
@@ -1,4 +1,11 @@
|
||||
{ inputs, ... }: {
|
||||
flake-file.inputs = {
|
||||
aghpb = {
|
||||
url = "github:cat-milk/Anime-Girls-Holding-Programming-Books";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
||||
flake.modules.homeManager.randomized-aghpb-wallpaper = {
|
||||
imports = with inputs.self.factory; [
|
||||
(wpaperd {
|
||||
|
||||
@@ -38,11 +38,20 @@
|
||||
hyprcursor.size = size;
|
||||
};
|
||||
|
||||
wayland.windowManager.hyprland.settings.exec-once = [
|
||||
"hyprctl setcursor catppuccin-mocha-mauve-cursors 24"
|
||||
];
|
||||
|
||||
catppuccin.enable = true;
|
||||
# Required for QT apps to use the catppuccin colors
|
||||
qt = {
|
||||
enable = true;
|
||||
style.name = "kvantum";
|
||||
};
|
||||
|
||||
gtk = {
|
||||
enable = true;
|
||||
colorScheme = "dark";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -21,10 +21,6 @@
|
||||
follow_mouse = 1;
|
||||
};
|
||||
|
||||
exec-once = [
|
||||
"hyprctl setcursor catppuccin-mocha-mauve-cursors 24"
|
||||
];
|
||||
|
||||
bind =
|
||||
[
|
||||
"$mod, Q, exit"
|
||||
|
||||
@@ -8,4 +8,8 @@
|
||||
fontDir.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
flake.modules.homeManager.nerdfonts = {
|
||||
gtk.font.name = "JetBrainsMono";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user