before upgrade?

This commit is contained in:
Till 2025-03-19 16:15:29 +01:00
parent 133eee5975
commit 3e8d9e6b84
9 changed files with 46 additions and 14 deletions

24
flake.lock generated
View file

@ -28,11 +28,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1736373539, "lastModified": 1739757849,
"narHash": "sha256-dinzAqCjenWDxuy+MqUQq0I4zUSfaCvN9rzuCmgMZJY=", "narHash": "sha256-Gs076ot1YuAAsYVcyidLKUMIc4ooOaRGO0PqTY7sBzA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "bd65bc3cde04c16755955630b344bc9e35272c56", "rev": "9d3d080aec2a35e05a15cedd281c2384767c2cfe",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -44,11 +44,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1739357830, "lastModified": 1740339700,
"narHash": "sha256-9xim3nJJUFbVbJCz48UP4fGRStVW5nv4VdbimbKxJ3I=", "narHash": "sha256-cbrw7EgQhcdFnu6iS3vane53bEagZQy/xyIkDWpCgVE=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "0ff09db9d034a04acd4e8908820ba0b410d7a33a", "rev": "04ef94c4c1582fd485bbfdb8c4a8ba250e359195",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -60,11 +60,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1739446958, "lastModified": 1740367490,
"narHash": "sha256-+/bYK3DbPxMIvSL4zArkMX0LQvS7rzBKXnDXLfKyRVc=", "narHash": "sha256-WGaHVAjcrv+Cun7zPlI41SerRtfknGQap281+AakSAw=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2ff53fe64443980e139eaa286017f53f88336dd0", "rev": "0196c0175e9191c474c26ab5548db27ef5d34b05",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -81,11 +81,11 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1739538383, "lastModified": 1740494722,
"narHash": "sha256-lc4FWHP4VWOKHBxD19/AQWmbsUCwdefMiJIdFa6KQuY=", "narHash": "sha256-Yl3bKdrUEwBJPMaukZobKvnQCygTgpQVN2bEXgOETMU=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nur", "repo": "nur",
"rev": "35198d73b581574847341314fff8a99ba3d122bb", "rev": "2f870320a423b88592fc6f4dffa6ece86eb06dc4",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -22,7 +22,7 @@
./system/desktop.nix ./system/desktop.nix
./system/hardware/nova.nix ./system/hardware/nova.nix
./system/gnome.nix ./system/gnome.nix
./system/hyprland.nix ./system/sway.nix
./system/steam.nix ./system/steam.nix
./system/btrbk.nix ./system/btrbk.nix
./system/yubikey.nix ./system/yubikey.nix

View file

@ -15,6 +15,7 @@
# text publishing # text publishing
libreoffice libreoffice
jdk
poppler_utils poppler_utils
zotero zotero
@ -43,6 +44,7 @@
./slim-desktop.nix ./slim-desktop.nix
./gnome ./gnome
./firefox.nix ./firefox.nix
./librewolf.nix
./tex.nix ./tex.nix
./fonts.nix ./fonts.nix
]; ];

5
home/librewolf.nix Normal file
View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }:
{
programs.librewolf.enable = true;
}

View file

@ -64,6 +64,6 @@
programs.bottom = { programs.bottom = {
enable = true; enable = true;
settings.flags.color = "default-light"; settings.styles.theme = "default-light";
}; };
} }

View file

@ -50,6 +50,7 @@
languageserver languageserver
magrittr magrittr
mapproj mapproj
networkD3
openxlsx openxlsx
plotly plotly
progress progress

View file

@ -40,6 +40,8 @@
hunspellDicts.en_US hunspellDicts.en_US
hunspellDicts.th_TH hunspellDicts.th_TH
hyphen hyphen
hyphenDicts.de_DE
hyphenDicts.en_US
pandoc pandoc
imagemagick imagemagick
ghostscript ghostscript

View file

@ -32,6 +32,7 @@ let
nowidow nowidow
pdfcol pdfcol
pdfpages pdfpages
pdfx
pgf pgf
qrcode qrcode
scheme-medium scheme-medium
@ -51,6 +52,7 @@ let
transparent transparent
was was
wrapfig wrapfig
xmpincl
xpatch xpatch
xstring xstring
xtab xtab

20
system/sway.nix Normal file
View file

@ -0,0 +1,20 @@
{ config, pkgs, ... }:
{
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
programs.waybar.enable = true;
services.gnome.gnome-keyring.enable = true;
environment.systemPackages = with pkgs; [
grim
slurp
wl-clipboard
swaynotificationcenter
tofi
];
}