added more packages

This commit is contained in:
Jakub Kropáček 2024-09-17 12:15:52 +02:00
parent 133dce1495
commit cfff2055ee
3 changed files with 28 additions and 4 deletions

View file

@ -37,11 +37,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1726436956, "lastModified": 1726481836,
"narHash": "sha256-a3rP7uafX/qBFX0y4CGS8vvTPvxsLl9eZQ85DkIn3DI=", "narHash": "sha256-MWTBH4dd5zIz2iatDb8IkqSjIeFum9jAqkFxgHLdzO4=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "039b72d0c738c934e2e36d7fc5520d1b425287a6", "rev": "20f9370d5f588fb8c72e844c54511cab054b5f40",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -111,7 +111,6 @@
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
alacritty alacritty
tailscale
gnome-tweaks gnome-tweaks
nixd nixd
fzf fzf
@ -119,6 +118,7 @@
jetbrains-mono jetbrains-mono
mattermost-desktop mattermost-desktop
gh gh
gparted
]; ];
@ -131,6 +131,8 @@
firefox.enable = true; firefox.enable = true;
}; };
services.tailscale.enable = true;
services.flatpak = { services.flatpak = {
enable = true; enable = true;
remotes = [ remotes = [
@ -139,6 +141,7 @@
]; ];
packages = [ packages = [
"org.gnome.World.PikaBackup" "org.gnome.World.PikaBackup"
"ca.desrt.dconf-editor"
]; ];
}; };

View file

@ -69,6 +69,27 @@
# EDITOR = "emacs"; # EDITOR = "emacs";
}; };
gtk = {
enable = true;
gtk3.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme=1
'';
};
gtk4.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme=1
'';
};
};
qt = {
enable = true;
platformTheme.name = "adwaita";
style.name = "adwaita-dark";
};
programs.git = { programs.git = {
enable = true; enable = true;
userName = "Jakub Kropáček"; userName = "Jakub Kropáček";