mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-28 01:18:29 +02:00
home: remove declarative account configuration
This commit is contained in:
parent
e7a4594300
commit
b3329fd1a9
13 changed files with 53 additions and 334 deletions
|
@ -64,13 +64,43 @@
|
|||
nodejs_20
|
||||
gnumake
|
||||
go
|
||||
|
||||
# fancy tools
|
||||
just
|
||||
himalaya
|
||||
zellij
|
||||
nushell
|
||||
# strace but with colors
|
||||
(strace.overrideAttrs (_: {
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/xfgusta/strace-with-colors/main/strace-with-colors.patch";
|
||||
hash = "sha256-gcQldGsRgvGnrDX0zqcLTpEpchNEbCUFdKyii0wetEI=";
|
||||
})
|
||||
];
|
||||
}))
|
||||
|
||||
];
|
||||
|
||||
|
||||
programs.obs-studio.enable = true;
|
||||
programs.firefox.enable = true;
|
||||
programs = {
|
||||
thunderbird = {
|
||||
enable = true;
|
||||
profiles = {
|
||||
default = {
|
||||
withExternalGnupg = true;
|
||||
isDefault = true;
|
||||
settings = {
|
||||
"intl.date_time.pattern_override.connector_short" = "{1} {0}";
|
||||
"intl.date_time.pattern_override.date_short" = "yyyy-MM-dd";
|
||||
"intl.date_time.pattern_override.time_short" = "HH:mm";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
services.gnome-keyring.enable = true;
|
||||
|
||||
xdg.mimeApps = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue