summaryrefslogtreecommitdiff
path: root/nixos/systems/ideapad-laptop/system.nix
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-02 13:50:49 -0400
committertriethyl <triethylammonium@pm.me>2025-09-02 13:50:49 -0400
commitce6edbe1ce9eb9ac39a7072da8038831feb1f797 (patch)
tree0cd2fa232f81d05956711f2f45c9323258f322b1 /nixos/systems/ideapad-laptop/system.nix
parent5f9ae590ed12d7d52385d5bc9767297ca77a6d88 (diff)
removed ideapad-laptop
Diffstat (limited to 'nixos/systems/ideapad-laptop/system.nix')
-rw-r--r--nixos/systems/ideapad-laptop/system.nix66
1 files changed, 0 insertions, 66 deletions
diff --git a/nixos/systems/ideapad-laptop/system.nix b/nixos/systems/ideapad-laptop/system.nix
deleted file mode 100644
index 9067924..0000000
--- a/nixos/systems/ideapad-laptop/system.nix
+++ /dev/null
@@ -1,66 +0,0 @@
-{config, ...}: {
- imports = [./hardware.nix];
-
- general-settings = {
- hostname = "ideapad-laptop";
- locale = "en_US.UTF-8";
- timezone = "America/New_York";
- stateVersion = "23.11";
- };
-
- age.secrets.lucas-user-password.file = ../../secrets/lucas-user-password.age;
-
- users.users."lucas" = {
- hashedPasswordFile = config.age.secrets.lucas-user-password.path;
- isNormalUser = true;
- description = "lucas";
- extraGroups = [
- "networkmanager"
- "wheel"
- "audio"
- "video"
- "libvirtd"
- ];
- };
-
- features = {
- gui = {
- apps = {
- steam.enable = true;
- # vmware.enable = true;
- };
- desktops = {
- niri.enable = true;
- };
- };
- cli = {
- shells.nushell.enable = true;
- utils = {
- nh = {
- enable = true;
- flake = "/home/lucas/Sync/setup";
- };
- };
- };
- services = {
- core.systemd-boot.enable = true;
- hardware = {
- bluetooth.enable = true;
- iwd.enable = true;
- pipewire.enable = true;
- };
- extra = {
- plymouth.enable = true;
- sddm.enable = true;
- syncthing-client = {
- enable = true;
- username = "lucas";
- };
- udisks2.enable = true;
- };
- bundles = {
- printing.enable = true;
- };
- };
- };
-}