Compare commits

..

No commits in common. "662e0ab326f735168cc83d90ab20576ff8277be7" and "bf225209d7b0c94268b01e930fd12b3f6fb39a61" have entirely different histories.

17 changed files with 13 additions and 40 deletions

View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1783436070, "lastModified": 1778954430,
"narHash": "sha256-F80z1JoiJgZyTT5D+3siLOVzqmCEphLR7t0Ym/I2CLI=", "narHash": "sha256-oaNyOr05lblaQdtbkbN1wO0b2KLIL2O1LkmwDgdQp4I=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "f09af49406ffad37acb6538d3207189a1a1e0b7e", "rev": "26aaab785b0bab4af60a2c42b22760fa906ef22a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -21,15 +21,12 @@
} }
}, },
"nixos-hardware": { "nixos-hardware": {
"inputs": {
"nixpkgs": "nixpkgs"
},
"locked": { "locked": {
"lastModified": 1783370751, "lastModified": 1778945272,
"narHash": "sha256-E+3MIMvKuo9k+K+qLQ9YXzsBzkgHuyVLnsEbN2DFfuc=", "narHash": "sha256-Aipz0UiBhE2a1FYJrNc2y+5vKWo5QVkhmaIJk3/ls+g=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "662bd6e312d2c8b212e32cb377abaee190749320", "rev": "379c1f274f0fa354d012f0600806de54e79f29b5",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -41,24 +38,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1767892417, "lastModified": 1778869304,
"narHash": "sha256-8bW3q88CEg2u4hSP66Vf4lpbLonHz7hqDNBMcCY7E9U=", "narHash": "sha256-30sZNZoA1cqF5JNO9fVX+wgiQYjB7HJqqJ4ztCDeBZE=",
"rev": "3497aa5c9457a9d88d71fa93a4a8368816fbeeba",
"type": "tarball",
"url": "https://releases.nixos.org/nixos/unstable/nixos-26.05pre924538.3497aa5c9457/nixexprs.tar.xz"
},
"original": {
"type": "tarball",
"url": "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1783224372,
"narHash": "sha256-8i/87eeoqiGE4yOTjwSA3Eh/ziJRQEmd/unYU+K27sk=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d407951447dcd00442e97087bf374aad70c04cea", "rev": "d233902339c02a9c334e7e593de68855ad26c4cb",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -71,7 +55,7 @@
"inputs": { "inputs": {
"home-manager": "home-manager", "home-manager": "home-manager",
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_2" "nixpkgs": "nixpkgs"
} }
} }
}, },

View file

@ -69,7 +69,7 @@
# dnssec = "true"; # dnssec = "true";
settings.Resolve = { settings.Resolve = {
Domains = [ "~." ]; Domains = [ "~." ];
# FallbackDns = [ "9.9.9.9" "149.112.112.112" ]; FallbackDns = [ "9.9.9.9" "149.112.112.112" ];
}; };
}; };

View file

@ -92,7 +92,6 @@
gthumb gthumb
anki anki
butterfly butterfly
deltachat-desktop
] ++ # Selection of graphical apps ] ++ # Selection of graphical apps
[ [
prismlauncher prismlauncher

View file

@ -9,8 +9,8 @@
isDefault = true; isDefault = true;
search = { search = {
force = true; force = true;
default = "DuckDuckGo"; default = "EnCours";
order = [ "DuckDuckGo" "EnCours" "Google" ]; order = [ "EnCours" "DuckDuckGo" "Google" ];
engines = { engines = {
"Nix Packages" = { "Nix Packages" = {
urls = [{ urls = [{

View file

@ -17,7 +17,6 @@ in
"battery" "battery"
"tray" "tray"
"sway/language" "sway/language"
"custom/weather"
"clock" "clock"
]; ];
"sway/workspaces" = { "sway/workspaces" = {
@ -88,13 +87,6 @@ in
tooltip-format = "{long}"; tooltip-format = "{long}";
on-click = ''swaymsg input "*" xkb_switch_layout next''; on-click = ''swaymsg input "*" xkb_switch_layout next'';
}; };
"custom/weather" = {
format = "{}°";
tooltip = true;
interval = 3600;
exec = "wttrbar";
return-type = "json";
};
clock = { clock = {
interval = 1; interval = 1;
format = "<span size='10pt' font='Red Hat Mono'>{:L%H:%M:%S %a %F}</span>"; format = "<span size='10pt' font='Red Hat Mono'>{:L%H:%M:%S %a %F}</span>";
@ -156,6 +148,4 @@ in
position = "top"; position = "top";
fonts = config.wayland.windowManager.sway.config.fonts; fonts = config.wayland.windowManager.sway.config.fonts;
}]; }];
home.packages = with pkgs; [wttrbar];
} }