summaryrefslogtreecommitdiff
path: root/hosts/omar/configuration.nix
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2025-03-25 12:06:52 +0100
committerLinnnus <[email protected]>2025-03-25 12:06:52 +0100
commite89fa203c3f11a93fe8805e911744b3b8a049973 (patch)
tree1c2d2b145c69bc9be9214ffb21d403a44cc79931 /hosts/omar/configuration.nix
parent7f8c32c8295610ec7e5b8e387ea52cfa88250496 (diff)
Remove omar
Diffstat (limited to 'hosts/omar/configuration.nix')
-rw-r--r--hosts/omar/configuration.nix63
1 files changed, 0 insertions, 63 deletions
diff --git a/hosts/omar/configuration.nix b/hosts/omar/configuration.nix
deleted file mode 100644
index 62a6d69..0000000
--- a/hosts/omar/configuration.nix
+++ /dev/null
@@ -1,63 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}: {
- imports = [
- # Include the results of the hardware scan.
- ./hardware-configuration.nix
-
- ../../shared/nixos/common-nix-settings
- ../../shared/nixos/common-shell-settings
- ../../shared/nixos-and-darwin/common-hm-settings
- ../../shared/nixos/zfs-impermenance
- ../../shared/nixos/persist-ssh-host-keys
- ../../shared/nixos/danish
-
- ./wireless-networking
- ./desktop-environment
- ];
-
- boot.loader.grub = {
- # Use the GRUB 2 boot loader.
- enable = true;
-
- # Install grub on the main HDD.
- device = "/dev/sda";
-
- # ZFS on root requires GRUB to be able to read the pool.
- # The pool was created with `-o compatibility=grub2`.
- zfsSupport = true;
- };
-
- # The host id is required by ZFS.
- # It is used to (among other things) avoid multiple hosts modifying the same dataset unsafely.
- # This was randomly generated.
- networking.hostId = "b6e8e80a";
-
- # Should match containing folder.
- networking.hostName = "omar";
-
- # Create the main user.
- users.users.linus = {
- isNormalUser = true;
- hashedPassword = "$y$j9T$UmZES4WC8FWrjBvdazq2e/$rzneAKZeySwSVKiSZJfXC.fciiQdGqxB5uyRaPQ6OF.";
- extraGroups = ["wheel"];
- };
- users.mutableUsers = false;
-
- home-manager.users.linus = {
- imports = [
- # I am planning on using this host when traveling.
- ../../shared/home-manager/development-full
- ../../shared/home-manager/firefox
- ];
- home.stateVersion = "24.11";
- };
-
- # Enable the OpenSSH daemon.
- services.openssh.enable = true;
-
- system.stateVersion = "24.11";
-}