summaryrefslogtreecommitdiff
path: root/hosts/laptop/configuration.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-04-12 23:47:47 +0200
committeradikro <adikro@disroot.org>2026-04-12 23:47:47 +0200
commitbf126b5e1ae5cbab3b62c00bbff614a23539e431 (patch)
treeb275c56596eaf3f5754cea30f04e84bbcc21e305 /hosts/laptop/configuration.nix
parent3ed184c48a1154a2548df807c8aaae7888e4792c (diff)
finalized client configs for tor, i2pd and yggdrasil
Diffstat (limited to 'hosts/laptop/configuration.nix')
-rw-r--r--hosts/laptop/configuration.nix61
1 files changed, 0 insertions, 61 deletions
diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix
deleted file mode 100644
index df4ba29..0000000
--- a/hosts/laptop/configuration.nix
+++ /dev/null
@@ -1,61 +0,0 @@
-{ username, ... }:
-{
- system.stateVersion = "25.05";
-
- imports = [
- ./hardware-configuration.nix
- ../../os/default.nix
- ];
-
- os = {
- core = {
- allowUnfree.enable = true;
-
- audio.enable = true;
- bootloader = {
- type = "grub";
- grub = {
- useOSProber = true;
- defaultEntry = 2;
- };
- };
- drivers = {
- enable = true;
- cpu = "amd";
- graphics.enable = true;
- };
- fonts.enable = true;
- greet.enable = true;
- home-manager = {
- enable = true;
- users.${username}.path = ./home.nix;
- };
- locale.enable = true;
- memory = {
- zram.enable = true;
- swapfile.enable = true;
- };
- network.enable = true;
- power = {
- enable = true;
- mode = "amd";
- };
- security.enable = true;
- ssh.enable = true;
- storage.enable = true;
- users.enable = true;
- };
- srv = {
- bluetooth.enable = true;
- files.enable = true;
- gaming.enable = true;
- nix-helper.enable = true;
- kdeconnect.enable = true;
- sops.enable = true;
- };
- wm = {
- enable = true;
- niri.enable = true;
- };
- };
-}