Compare commits
5 commits
d5ebf4537f
...
c4338a0276
Author | SHA1 | Date | |
---|---|---|---|
c4338a0276 | |||
ad99d271cc | |||
aa0d376098 | |||
c3badcd8d3 | |||
0495060ede |
1 changed files with 15 additions and 5 deletions
|
@ -28,6 +28,7 @@
|
||||||
annotator # image annotation, KDE's Spectacle does too but only for screenshots it just took, maybe ksnip or shutter would be more flexible screenshot tools, hmm kdePackages.kquickimageedit and kdePackages.kimageannotator basically use the same tools as Spectacle, i'll try them too.
|
annotator # image annotation, KDE's Spectacle does too but only for screenshots it just took, maybe ksnip or shutter would be more flexible screenshot tools, hmm kdePackages.kquickimageedit and kdePackages.kimageannotator basically use the same tools as Spectacle, i'll try them too.
|
||||||
ansible
|
ansible
|
||||||
authenticator # 2-factor auth, it's for Gnome but it's the only good one (can scan in from the phone etc)
|
authenticator # 2-factor auth, it's for Gnome but it's the only good one (can scan in from the phone etc)
|
||||||
|
beets
|
||||||
birdtray
|
birdtray
|
||||||
bitwarden-cli
|
bitwarden-cli
|
||||||
bitwarden-desktop
|
bitwarden-desktop
|
||||||
|
@ -39,7 +40,7 @@
|
||||||
# cruft
|
# cruft
|
||||||
cups-brother-hll2375dw
|
cups-brother-hll2375dw
|
||||||
curl
|
curl
|
||||||
ddev
|
unstable.ddev
|
||||||
diffr
|
diffr
|
||||||
dig
|
dig
|
||||||
dmidecode
|
dmidecode
|
||||||
|
@ -53,6 +54,7 @@
|
||||||
fira-mono # coding font WITHOUT ligatures, thank god
|
fira-mono # coding font WITHOUT ligatures, thank god
|
||||||
firefox
|
firefox
|
||||||
firefoxpwa
|
firefoxpwa
|
||||||
|
flameshot # screenshots with annotations
|
||||||
floorp
|
floorp
|
||||||
fsearch
|
fsearch
|
||||||
getxbook
|
getxbook
|
||||||
|
@ -143,8 +145,8 @@
|
||||||
reveal-md
|
reveal-md
|
||||||
rink
|
rink
|
||||||
rofi
|
rofi
|
||||||
rustdesk
|
# rustdesk - not using error-ish
|
||||||
samba
|
# samba - not using…?
|
||||||
sassc # Convenient to use directly, though it is deprecated in favor of dart-sass i think
|
sassc # Convenient to use directly, though it is deprecated in favor of dart-sass i think
|
||||||
shortwave
|
shortwave
|
||||||
shotwell # Even though i'm not on Gnome anymore, really don't see the need to switch to KPhotoAlbum (NixOS has to download more for that anyway). The other option is digikam and if getting into RAW and editing more, darktable
|
shotwell # Even though i'm not on Gnome anymore, really don't see the need to switch to KPhotoAlbum (NixOS has to download more for that anyway). The other option is digikam and if getting into RAW and editing more, darktable
|
||||||
|
@ -370,8 +372,16 @@
|
||||||
# programs.appimage.enable = true;
|
# programs.appimage.enable = true;
|
||||||
# programs.appimage.binfmt = true;
|
# programs.appimage.binfmt = true;
|
||||||
|
|
||||||
# Allow unfree packages
|
nixpkgs.config = {
|
||||||
nixpkgs.config.allowUnfree = true;
|
# Allow unfree packages
|
||||||
|
allowUnfree = true;
|
||||||
|
# Allow getting packages from unstable by prefixing unstable in package list.
|
||||||
|
packageOverrides = pkgs: {
|
||||||
|
unstable = import <nixpkgs> {
|
||||||
|
config = config.nixpkgs.config;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# TODO remove this when Logseq gets its act together
|
# TODO remove this when Logseq gets its act together
|
||||||
# nixpkgs.config.permittedInsecurePackages = [
|
# nixpkgs.config.permittedInsecurePackages = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue