Skip to content

Commit

Permalink
update, various changes, enable swap
Browse files Browse the repository at this point in the history
  • Loading branch information
KSPAtlas committed Nov 18, 2024
1 parent edf3685 commit 3a1ede3
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 32 deletions.
58 changes: 29 additions & 29 deletions flake.lock

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

2 changes: 1 addition & 1 deletion hm/dotfiles/config.nu
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ $env.config = {
history: {
max_size: 100_000 # Session has to be reloaded for this to take effect
sync_on_enter: true # Enable to share history between multiple sessions, else you have to close the session to write history to file
file_format: "plaintext" # "sqlite" or "plaintext"
file_format: "sqlite" # "sqlite" or "plaintext"
isolation: false # only available with sqlite file_format. true enables history isolation, false disables it. true will allow the history to be isolated to the current session using up/down arrows. false will allow the history to be shared across all sessions.
}

Expand Down
2 changes: 1 addition & 1 deletion hm/dotfiles/sway_config
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ bar {

# When the status_command prints a new line to stdout, swaybar updates.
# The default just shows the current date and time.
status_command while date +'%Y-%m-%d %X'; do sleep 1; done
status_command while date +'%Y-%m-%d %T'; do sleep 1; done

colors {
statusline #ffffff
Expand Down
7 changes: 7 additions & 0 deletions hm/ksp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,12 @@
name = "kora";
package = pkgs.kora-icon-theme;
};

qt = {
enable = true;
style.name = "adwaita-dark";
};

# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs; [
Expand Down Expand Up @@ -142,6 +148,7 @@
libsixel
xfce.thunar
qbittorrent
imv

zls
zig
Expand Down
5 changes: 4 additions & 1 deletion nixos/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@
options = [ "subvol=home00" ];
};

swapDevices = [ ];
swapDevices = [{
device = "/swap/swapfile";
size = 16*1024;
}];

# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
Expand Down

0 comments on commit 3a1ede3

Please sign in to comment.