Skip to content

Commit

Permalink
Lazy update
Browse files Browse the repository at this point in the history
  • Loading branch information
jervw committed Aug 18, 2024
1 parent 5630ca1 commit ea98dae
Show file tree
Hide file tree
Showing 29 changed files with 143 additions and 270 deletions.
157 changes: 71 additions & 86 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,6 @@
flake = false;
};

nixos-cosmic = {
url = "github:lilyinstarlight/nixos-cosmic";
inputs.nixpkgs.follows = "nixpkgs";
};

ssh-keys = {
url = "https://github.com/jervw.keys";
flake = false;
Expand Down
1 change: 0 additions & 1 deletion home/core/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
];

home.packages = with pkgs; [
amp
dconf
bat
btop
Expand Down
2 changes: 1 addition & 1 deletion home/core/zellij.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{...}: {
_: {
programs.zellij = {
enable = true;
settings = {
Expand Down
2 changes: 1 addition & 1 deletion home/desktop/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
obsidian
signal-desktop
vial
steam
lutris
ffmpeg
libnotify
tomato-c
mpd
chatterino2
plex-desktop
zed-editor
self.packages.${pkgs.system}.cider2
];
}
3 changes: 0 additions & 3 deletions home/desktop/firefox.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@
"browser.toolbars.bookmarks.visibility" = "never";
"geo.enabled" = false;

# Allow syncing browser config to Firefox Sync
"services.sync.prefs.dangerously_allow_arbitrary" = true;

# Disable telemetry
"browser.newtabpage.activity-stream.feeds.telemetry" = false;
"browser.ping-centre.telemetry" = false;
Expand Down
6 changes: 5 additions & 1 deletion home/desktop/foot.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ _: {
term = "xterm-256color";
font = "JetBrainsMono Nerd Font Mono:size=13";
pad = "10x10 center";
notify = "notify-send -a \${app-id} -i \${app-id} \${title} \${body}";
selection-target = "clipboard";
};

desktop-notifications = {
command = "notify-send -a \${app-id} -i \${app-id} \${title} \${body}";
};

scrollback = {
lines = 10000;
multiplier = 3;
Expand All @@ -27,6 +30,7 @@ _: {
cursor = {
style = "beam";
color = "dfdfe0 dfdfe0";
blink = "yes";
beam-thickness = 1;
};

Expand Down
11 changes: 4 additions & 7 deletions home/impermanence.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,16 @@ in {
"vids"
"sync"
"other"
"Games" # TODO make this lowercase somehow
"games"
".dots"
]
++ forEach ["dconf" "rclone" "Yubico" "sh.cider.electron" "syncthing" "fish" "vesktop" "obs-studio" "gh"] (
++ forEach ["dconf" "rclone" "Yubico" "sh.cider.electron" "syncthing" "fish" "vesktop" "obs-studio" "gh" "zed"] (
x: ".config/${x}"
)
++ forEach ["nix" "mozilla"] (
++ forEach ["nix" "mozilla" "lutris"] (
x: ".cache/${x}"
)
++ forEach ["Steam" "fish" "direnv" "keyrings" "chatterino" "gh"] (x: ".local/share/${x}")
++ forEach ["Steam" "fish" "direnv" "keyrings" "chatterino" "gh" "lutris"] (x: ".local/share/${x}")
++ [".ssh" ".gnupg" ".mozilla"];
files = [
".wall.png"
];
};
}
Loading

0 comments on commit ea98dae

Please sign in to comment.