Compare commits
4 commits
f63a44bfa0
...
2db048eb5a
Author | SHA1 | Date | |
---|---|---|---|
2db048eb5a | |||
b19b93e39c | |||
674d531d32 | |||
61685e8253 |
10 changed files with 46 additions and 20 deletions
|
@ -5,3 +5,7 @@ extend-ignore-re = ['[a-fA-F0-9]{6}']
|
|||
[default.extend-words]
|
||||
doas = "doas"
|
||||
edn = "edn"
|
||||
|
||||
[type.images]
|
||||
extend-glob = ["*.png"]
|
||||
check-file = false
|
||||
|
|
18
flake.lock
generated
18
flake.lock
generated
|
@ -7,11 +7,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1713077896,
|
||||
"narHash": "sha256-Noot8H0EZEAFRQWyGxh9ryvhK96xpIqKbh78X447JWs=",
|
||||
"lastModified": 1714515075,
|
||||
"narHash": "sha256-azMK7aWH0eUc3IqU4Fg5rwZdB9WZBvimOGG3piqvtsY=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "630a0992b3627c64e34f179fab68e3d48c6991c0",
|
||||
"rev": "6d3b6dc9222c12b951169becdf4b0592ee9576ef",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -22,11 +22,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1712963716,
|
||||
"narHash": "sha256-WKm9CvgCldeIVvRz87iOMi8CFVB1apJlkUT4GGvA0iM=",
|
||||
"lastModified": 1714253743,
|
||||
"narHash": "sha256-mdTQw2XlariysyScCv2tTE45QSU9v/ezLcHJ22f0Nxc=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "cfd6b5fc90b15709b780a5a1619695a88505a176",
|
||||
"rev": "58a1abdbae3217ca6b702f03d3b35125d88a2994",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -37,11 +37,11 @@
|
|||
},
|
||||
"nur": {
|
||||
"locked": {
|
||||
"lastModified": 1713113175,
|
||||
"narHash": "sha256-E/WxD3Nh4kd3AYYLk8UyMnkUm9AMT3zUk/rBI4Qjk04=",
|
||||
"lastModified": 1714596740,
|
||||
"narHash": "sha256-V3ZR38xu3JSUrg04wMTp0fzDSP+ogNJOOU5ckreCzLQ=",
|
||||
"owner": "nix-community",
|
||||
"repo": "NUR",
|
||||
"rev": "90060445d9ee7b731c147b2caa53dc45d557bce9",
|
||||
"rev": "c8456769a0904ac761020a76bf0bb72a92c27c7c",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
BIN
hosts/luci/files/lockscreen.png
Normal file
BIN
hosts/luci/files/lockscreen.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 146 KiB |
BIN
hosts/luci/files/wallpaper.png
Normal file
BIN
hosts/luci/files/wallpaper.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 65 KiB |
|
@ -25,6 +25,8 @@
|
|||
desktop.sway = {
|
||||
enable = true;
|
||||
kanshi = true;
|
||||
wallpapers.lockscreen = "${./files/lockscreen.png}";
|
||||
wallpapers.desktop = "${./files/wallpaper.png} center #000000";
|
||||
waybar = {
|
||||
laptop = true;
|
||||
gpuThermal = {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
_: {
|
||||
_:
|
||||
{
|
||||
## Specific host home manager configuration
|
||||
wayland.windowManager.sway.config = {
|
||||
input = {
|
||||
"1:1:AT_Translated_Set_2_keyboard" = {
|
||||
|
@ -13,11 +15,5 @@ _: {
|
|||
"pointer_accel" = "0.3";
|
||||
};
|
||||
};
|
||||
|
||||
output = {
|
||||
"*" = {
|
||||
bg = "~/medias/images/wallpapers/wallpaper.png center #000000";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -13,6 +13,19 @@ in
|
|||
description = "configure laptop mode";
|
||||
};
|
||||
|
||||
wallpapers = {
|
||||
lockscreen = mkOption {
|
||||
type = types.str;
|
||||
default = "";
|
||||
description = "path for lockscreen wallpaper";
|
||||
};
|
||||
desktop = mkOption {
|
||||
type = types.str;
|
||||
default = "";
|
||||
description = "path for desktop wallpaper";
|
||||
};
|
||||
};
|
||||
|
||||
waybar = {
|
||||
laptop = mkOption {
|
||||
type = types.bool;
|
||||
|
@ -130,7 +143,7 @@ in
|
|||
|
||||
qt = {
|
||||
enable = true;
|
||||
platformTheme = "gnome";
|
||||
platformTheme.name = "adwaita";
|
||||
style.name = "adwaita-dark";
|
||||
};
|
||||
xdg = {
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.desktop.sway;
|
||||
in
|
||||
{
|
||||
config = mkIf config.modules.desktop.sway.enable {
|
||||
wayland.windowManager.sway = {
|
||||
|
@ -20,6 +23,11 @@ with lib;
|
|||
xkb_variant = "altgr-intl";
|
||||
};
|
||||
};
|
||||
output = {
|
||||
"*" = {
|
||||
bg = "${cfg.wallpapers.desktop}";
|
||||
};
|
||||
};
|
||||
seat = {
|
||||
"*".hide_cursor = "when-typing enable";
|
||||
};
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
{ config, lib, ... }:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.desktop.sway;
|
||||
in
|
||||
{
|
||||
config = mkIf config.modules.desktop.sway.enable {
|
||||
programs.swaylock = {
|
||||
enable = true;
|
||||
settings = {
|
||||
image = "~/medias/images/wallpapers/lockscreen.png";
|
||||
image = "${cfg.wallpapers.lockscreen}";
|
||||
scaling = "center";
|
||||
color = "000000";
|
||||
indicator-radius = 70;
|
||||
|
|
|
@ -55,8 +55,8 @@
|
|||
../hosts/${hostname}/home-config.nix
|
||||
../modules/home-manager/default.nix
|
||||
] ++ lib.optional (
|
||||
builtins.pathExists ../home-manager/hosts/${hostname}.nix
|
||||
) ../home-manager/hosts/${hostname}.nix;
|
||||
builtins.pathExists ../hosts/${hostname}/includes/home-manager.nix
|
||||
) ../hosts/${hostname}/includes/home-manager.nix;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue