summaryrefslogtreecommitdiff
path: root/hosts/laptop/configuration.nix
diff options
context:
space:
mode:
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;
- };
- };
-}