Compare commits

...

3 commits

Author SHA1 Message Date
vorboyvo 662e0ab326 Updated flake.lock. 2026-07-07 15:47:14 -04:00
vorboyvo 9ccb346576 Updated flake.lock. 2026-06-09 12:53:02 -04:00
vorboyvo ff97f988e7 Changed some things ugh. McGill fonts, duckduckgo, delta. 2026-05-28 13:25:40 -04:00
17 changed files with 40 additions and 13 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

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

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,6 +92,7 @@
gthumb
anki
butterfly
deltachat-desktop
] ++ # Selection of graphical apps
[
prismlauncher

View file

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

View file

@ -17,6 +17,7 @@ in
"battery"
"tray"
"sway/language"
"custom/weather"
"clock"
];
"sway/workspaces" = {
@ -87,6 +88,13 @@ 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>";
@ -148,4 +156,6 @@ in
position = "top";
fonts = config.wayland.windowManager.sway.config.fonts;
}];
home.packages = with pkgs; [wttrbar];
}