mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 16:08:30 +02:00
formatting
This commit is contained in:
parent
d8f9425bed
commit
7d0571f4a9
10 changed files with 39 additions and 34 deletions
|
@ -225,10 +225,10 @@ in
|
|||
msmtp.enable = true;
|
||||
neomutt = let c = mbsync.groups.ifsr.channels; in
|
||||
{
|
||||
enable = true;
|
||||
mailboxName = " iFSR";
|
||||
extraMailboxes = lib.lists.forEach [ c.admin c.sent c.trash c.junk c.drafts ] (x: x.nearPattern);
|
||||
};
|
||||
enable = true;
|
||||
mailboxName = " iFSR";
|
||||
extraMailboxes = lib.lists.forEach [ c.admin c.sent c.trash c.junk c.drafts ] (x: x.nearPattern);
|
||||
};
|
||||
};
|
||||
"gmail" = rec {
|
||||
address = "seifertrouven@gmail.com";
|
||||
|
@ -283,10 +283,10 @@ in
|
|||
msmtp.enable = true;
|
||||
neomutt = let c = mbsync.groups.gmail.channels; in
|
||||
{
|
||||
enable = true;
|
||||
mailboxName = " gmail";
|
||||
extraMailboxes = lib.lists.forEach [ c.sent c.trash c.junk c.drafts ] (x: x.nearPattern);
|
||||
};
|
||||
enable = true;
|
||||
mailboxName = " gmail";
|
||||
extraMailboxes = lib.lists.forEach [ c.sent c.trash c.junk c.drafts ] (x: x.nearPattern);
|
||||
};
|
||||
};
|
||||
};
|
||||
home.file.".urlview".text = ''
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ config, hyprpaper, ... }:
|
||||
let
|
||||
let
|
||||
hyprpaper-pkg = hyprpaper.packages.x86_64-linux.default;
|
||||
in
|
||||
{
|
||||
|
@ -7,12 +7,12 @@ in
|
|||
hyprpaper-pkg
|
||||
];
|
||||
xdg.configFile."hypr/hyprpaper.conf".text = ''
|
||||
preload = ${../../../../images/wallpaper.png}
|
||||
wallpaper =eDP-1, ${../../../../images/wallpaper.png}
|
||||
wallpaper =HDMI-A-1, ${../../../../images/wallpaper.png}
|
||||
preload = ${../../../../images/wallpaper.png}
|
||||
wallpaper =eDP-1, ${../../../../images/wallpaper.png}
|
||||
wallpaper =HDMI-A-1, ${../../../../images/wallpaper.png}
|
||||
'';
|
||||
systemd.user.services.hyprpaper = {
|
||||
Install.WantedBy = ["graphical-session.target"];
|
||||
Install.WantedBy = [ "graphical-session.target" ];
|
||||
Service = {
|
||||
ExecStart = "${hyprpaper-pkg}/bin/hyprpaper";
|
||||
Restart = "on-failure";
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.nixvim = { enable = true;
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
vimAlias = true;
|
||||
colorscheme = "dracula";
|
||||
options =
|
||||
{
|
||||
shiftwidth = 4;
|
||||
expandtab = true; preserveindent = true;
|
||||
expandtab = true;
|
||||
preserveindent = true;
|
||||
number = true;
|
||||
relativenumber = true;
|
||||
tabstop = 4;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue