mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: waybar nvidia
This commit is contained in:
parent
9019d65fb4
commit
32588d7074
16 changed files with 89 additions and 236 deletions
|
|
@ -1,4 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = [
|
||||
pkgs.adwaita-icon-theme
|
||||
];
|
||||
stylix = {
|
||||
enable = true;
|
||||
cursor = {
|
||||
|
|
|
|||
3
home/profiles/graphical/bitwarden.nix
Normal file
3
home/profiles/graphical/bitwarden.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = [ pkgs.bitwarden-desktop ];
|
||||
}
|
||||
|
|
@ -1,12 +1,14 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
(discord-krisp.override {
|
||||
withOpenASAR = true;
|
||||
withMoonlight = true;
|
||||
})
|
||||
];
|
||||
|
||||
programs.moonlight = {
|
||||
stylix.targets.vesktop.enable = false;
|
||||
programs.vesktop = {
|
||||
enable = true;
|
||||
settings = {
|
||||
autoUpdate = false;
|
||||
autoUpdateNotification = false;
|
||||
notifyAboutUpdates = false;
|
||||
disableMinSize = true;
|
||||
plugins = {
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,9 +7,6 @@
|
|||
btop
|
||||
htop
|
||||
|
||||
# Mail
|
||||
thunderbird
|
||||
|
||||
aseprite
|
||||
# Chat
|
||||
tdesktop # Telegram
|
||||
|
|
|
|||
36
home/profiles/graphical/thunderbird.nix
Normal file
36
home/profiles/graphical/thunderbird.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
_: {
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
profiles.main = {
|
||||
isDefault = true;
|
||||
withExternalGnupg = true;
|
||||
};
|
||||
};
|
||||
accounts.email.accounts = let
|
||||
katIdentity = {
|
||||
realName = "Kat Inskip";
|
||||
};
|
||||
dorkIdentity = {
|
||||
realName = "Kat Dork";
|
||||
};
|
||||
mainEnable.thunderbird = {
|
||||
enable = true;
|
||||
profiles = [ "main" ];
|
||||
};
|
||||
gmailAccount = mainEnable // {
|
||||
flavor = "gmail.com";
|
||||
};
|
||||
in {
|
||||
primary = gmailAccount // katIdentity // {
|
||||
primary = true;
|
||||
address = "kat@inskip.me";
|
||||
};
|
||||
home = gmailAccount // katIdentity // {
|
||||
address = "kat.inskip@gmail.com";
|
||||
};
|
||||
dork = gmailAccount // dorkIdentity // {
|
||||
address = "dorkdev99@gmail.com";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
0
home/profiles/graphical/thunderbird.yaml
Normal file
0
home/profiles/graphical/thunderbird.yaml
Normal file
14
home/profiles/shell/chawan.nix
Normal file
14
home/profiles/shell/chawan.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
_: {
|
||||
programs.chawan = {
|
||||
enable = true;
|
||||
settings = {
|
||||
buffer = {
|
||||
images = true;
|
||||
autofocus = true;
|
||||
};
|
||||
pager."C-k" = "() => pager.load('https://duckduckgo.com/?=')";
|
||||
pager."C-l" = "() => pager.load('https://github.com/?=')";
|
||||
pager."C-m" = "() => pager.load('https://news.ycombinator.com/?=')";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue