add papirus icons theme
This commit is contained in:
parent
ba6f93c0d5
commit
5769469b6b
3 changed files with 20 additions and 11 deletions
|
|
@ -23,6 +23,9 @@
|
||||||
|
|
||||||
[General]
|
[General]
|
||||||
TerminalApplication=${osconfig.device.programs.terminal}
|
TerminalApplication=${osconfig.device.programs.terminal}
|
||||||
|
|
||||||
|
[Icons]
|
||||||
|
Theme=Papirus
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
{ lib, osconfig, ... }: {
|
{ lib, osconfig, ... }: {
|
||||||
programs.bash = {
|
programs.bash = {
|
||||||
enable = true;
|
enable = true;
|
||||||
shellAliases = {
|
shellAliases = lib.attrsets.mergeAttrsList [
|
||||||
|
{
|
||||||
cls = "clear";
|
cls = "clear";
|
||||||
cleanup = "sudo nix-collect-garbage -d";
|
cleanup = "sudo nix-collect-garbage -d";
|
||||||
cls-log = "sudo journalctl --vacuum-time=1s";
|
cls-log = "sudo journalctl --vacuum-time=1s";
|
||||||
|
|
@ -10,10 +11,14 @@
|
||||||
|
|
||||||
nrs = "sudo nixos-rebuild switch --flake /etc/nixos#${osconfig.device.flake-name}";
|
nrs = "sudo nixos-rebuild switch --flake /etc/nixos#${osconfig.device.flake-name}";
|
||||||
flake-upgrade = "nix flake update";
|
flake-upgrade = "nix flake update";
|
||||||
|
}
|
||||||
|
{
|
||||||
spf = "superfile";
|
spf = "superfile";
|
||||||
} // lib.mkIf osconfig.virtualisation.waydroid.enable {
|
}
|
||||||
|
(lib.mkIf osconfig.virtualisation.waydroid.enable {
|
||||||
wss = "waydroid session stop; exit;";
|
wss = "waydroid session stop; exit;";
|
||||||
};
|
})
|
||||||
|
];
|
||||||
|
|
||||||
shellOptions = [
|
shellOptions = [
|
||||||
"histappend"
|
"histappend"
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@ in
|
||||||
with pkgs;
|
with pkgs;
|
||||||
[
|
[
|
||||||
custom-catppuccin-gtk
|
custom-catppuccin-gtk
|
||||||
|
papirus-icon-theme
|
||||||
|
|
||||||
git
|
git
|
||||||
vim
|
vim
|
||||||
|
|
|
||||||
Reference in a new issue