summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/desktop/configuration.nix6
-rw-r--r--hosts/desktop/home.nix16
-rw-r--r--hosts/laptop/configuration.nix5
-rw-r--r--hosts/laptop/home.nix10
4 files changed, 13 insertions, 24 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix
index 356cfb2..37ed03a 100644
--- a/hosts/desktop/configuration.nix
+++ b/hosts/desktop/configuration.nix
@@ -19,7 +19,7 @@
bootloader = "systemd-boot";
drivers = {
enable = true;
- amd.enable = true;
+ amdgpu.enable = true;
stability = "unstable";
};
fonts.enable = true;
@@ -29,7 +29,6 @@
users.${username}.path = ./home.nix;
};
locale.enable = true;
- network.enable = true;
memory = {
zram = {
enable = true;
@@ -40,7 +39,9 @@
size = 32;
};
};
+ network.enable = true;
security.enable = true;
+ ssh.enable = true;
storage = {
enable = true;
keepDays = 30;
@@ -48,6 +49,7 @@
users.enable = true;
};
srv = {
+ autoclicker.enable = true;
files = {
thunar.enable = true;
utils.enable = true;
diff --git a/hosts/desktop/home.nix b/hosts/desktop/home.nix
index bcb5e43..fa38457 100644
--- a/hosts/desktop/home.nix
+++ b/hosts/desktop/home.nix
@@ -28,7 +28,6 @@
waybar.enable = true;
themes = {
- enable = true;
gtk.enable = true;
qt.enable = true;
};
@@ -41,28 +40,21 @@
};
soft = {
browser = {
- enable = true;
librewolf.enable = true;
brave.enable = true;
};
- email = {
- enable = true;
- thunderbird.enable = false;
- evolution.enable = true;
- };
+ email.evolution.enable = true;
kdeconnect.enable = true;
kdenlive.enable = true;
media.enable = true;
+ mpv.enable = true;
nixcord.enable = true;
obs.enable = true;
obsidian.enable = true;
spicetify.enable = true;
torrent.enable = true;
- vpn = {
- enable = true;
- protonvpn.enable = true;
- mullvad.enable = false;
- };
+ vpn.protonvpn.enable = true;
+ yt-dlp.enable = true;
};
};
}
diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix
index 1f06829..7688f33 100644
--- a/hosts/laptop/configuration.nix
+++ b/hosts/laptop/configuration.nix
@@ -7,7 +7,7 @@
../../os/default.nix
];
- os = {
+ sys = {
core = {
allowUnfree.enable = true;
@@ -21,7 +21,6 @@
users.${username}.path = ./home.nix;
};
locale.enable = true;
- network.enable = true;
memory = {
zram = {
enable = true;
@@ -32,8 +31,10 @@
size = 8;
};
};
+ network.enable = true;
power.enable = true;
security.enable = true;
+ ssh.enable = true;
storage = {
enable = true;
keepDays = 14;
diff --git a/hosts/laptop/home.nix b/hosts/laptop/home.nix
index 244e1f6..777e270 100644
--- a/hosts/laptop/home.nix
+++ b/hosts/laptop/home.nix
@@ -34,21 +34,15 @@
starship.enable = true;
};
soft = {
- browser = {
- librewolf.enable = true;
- };
- email = {
- thunderbird.enable = false;
- evolution.enable = false;
- };
+ browser.librewolf.enable = true;
kdeconnect.enable = true;
mpv.enable = true;
media.enable = true;
- yt-dlp.enable = true;
nixcord.enable = true;
obsidian.enable = true;
spicetify.enable = true;
torrent.enable = true;
+ yt-dlp.enable = true;
};
};
}