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": {
"lastModified": 1783436070,
"narHash": "sha256-F80z1JoiJgZyTT5D+3siLOVzqmCEphLR7t0Ym/I2CLI=",
"lastModified": 1778954430,
"narHash": "sha256-oaNyOr05lblaQdtbkbN1wO0b2KLIL2O1LkmwDgdQp4I=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "f09af49406ffad37acb6538d3207189a1a1e0b7e",
"rev": "26aaab785b0bab4af60a2c42b22760fa906ef22a",
"type": "github"
},
"original": {
@ -21,15 +21,12 @@
}
},
"nixos-hardware": {
"inputs": {
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1783370751,
"narHash": "sha256-E+3MIMvKuo9k+K+qLQ9YXzsBzkgHuyVLnsEbN2DFfuc=",
"lastModified": 1778945272,
"narHash": "sha256-Aipz0UiBhE2a1FYJrNc2y+5vKWo5QVkhmaIJk3/ls+g=",
"owner": "NixOS",
"repo": "nixos-hardware",
"rev": "662bd6e312d2c8b212e32cb377abaee190749320",
"rev": "379c1f274f0fa354d012f0600806de54e79f29b5",
"type": "github"
},
"original": {
@ -41,24 +38,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1767892417,
"narHash": "sha256-8bW3q88CEg2u4hSP66Vf4lpbLonHz7hqDNBMcCY7E9U=",
"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=",
"lastModified": 1778869304,
"narHash": "sha256-30sZNZoA1cqF5JNO9fVX+wgiQYjB7HJqqJ4ztCDeBZE=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "d407951447dcd00442e97087bf374aad70c04cea",
"rev": "d233902339c02a9c334e7e593de68855ad26c4cb",
"type": "github"
},
"original": {
@ -71,7 +55,7 @@
"inputs": {
"home-manager": "home-manager",
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_2"
"nixpkgs": "nixpkgs"
}
}
},

View file

@ -69,7 +69,7 @@
# dnssec = "true";
settings.Resolve = {
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
anki
butterfly
deltachat-desktop
] ++ # Selection of graphical apps
[
prismlauncher

View file

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

View file

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