Compare commits

..

No commits in common. "2db048eb5a58340824411639b00689ec62a3aa9c" and "674d531d32eeee502880cd60b9fa64cb3a25b8a6" have entirely different histories.

4 changed files with 34 additions and 15 deletions

View file

@ -5,7 +5,3 @@ extend-ignore-re = ['[a-fA-F0-9]{6}']
[default.extend-words] [default.extend-words]
doas = "doas" doas = "doas"
edn = "edn" edn = "edn"
[type.images]
extend-glob = ["*.png"]
check-file = false

18
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1714515075, "lastModified": 1713077896,
"narHash": "sha256-azMK7aWH0eUc3IqU4Fg5rwZdB9WZBvimOGG3piqvtsY=", "narHash": "sha256-Noot8H0EZEAFRQWyGxh9ryvhK96xpIqKbh78X447JWs=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "6d3b6dc9222c12b951169becdf4b0592ee9576ef", "rev": "630a0992b3627c64e34f179fab68e3d48c6991c0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1714253743, "lastModified": 1712963716,
"narHash": "sha256-mdTQw2XlariysyScCv2tTE45QSU9v/ezLcHJ22f0Nxc=", "narHash": "sha256-WKm9CvgCldeIVvRz87iOMi8CFVB1apJlkUT4GGvA0iM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "58a1abdbae3217ca6b702f03d3b35125d88a2994", "rev": "cfd6b5fc90b15709b780a5a1619695a88505a176",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -37,11 +37,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1714596740, "lastModified": 1713113175,
"narHash": "sha256-V3ZR38xu3JSUrg04wMTp0fzDSP+ogNJOOU5ckreCzLQ=", "narHash": "sha256-E/WxD3Nh4kd3AYYLk8UyMnkUm9AMT3zUk/rBI4Qjk04=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "c8456769a0904ac761020a76bf0bb72a92c27c7c", "rev": "90060445d9ee7b731c147b2caa53dc45d557bce9",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -0,0 +1,23 @@
_: {
wayland.windowManager.sway.config = {
input = {
"1:1:AT_Translated_Set_2_keyboard" = {
xkb_layout = "us";
xkb_variant = "altgr-intl";
};
"2:7:SynPS/2_Synaptics_TouchPad" = {
"tap" = "enable";
"accel_profile" = "adaptive";
"dwt" = "enable";
"pointer_accel" = "0.3";
};
};
output = {
"*" = {
bg = "~/medias/images/wallpapers/wallpaper.png center #000000";
};
};
};
}

View file

@ -15,12 +15,12 @@ in
wallpapers = { wallpapers = {
lockscreen = mkOption { lockscreen = mkOption {
type = types.str; type = types.path;
default = ""; default = "";
description = "path for lockscreen wallpaper"; description = "path for lockscreen wallpaper";
}; };
desktop = mkOption { desktop = mkOption {
type = types.str; type = types.path;
default = ""; default = "";
description = "path for desktop wallpaper"; description = "path for desktop wallpaper";
}; };