diff --git a/flake.nix b/flake.nix index 50d2eb8..11bf155 100644 --- a/flake.nix +++ b/flake.nix @@ -28,6 +28,14 @@ inherit (self) outputs; in { + nixosConfigurations.dnsc-machine = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = { inherit inputs outputs; }; + modules = [ + ./hosts/dnsc-machine + ]; + }; + nixosConfigurations.dnsc-server = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit inputs outputs; }; diff --git a/home/linux.nix b/home/linux.nix new file mode 100644 index 0000000..885efa6 --- /dev/null +++ b/home/linux.nix @@ -0,0 +1,33 @@ +{ _config, pkgs, ... }: + +{ + home.username = "dennis"; + home.homeDirectory = "/home/dennis"; + home.stateVersion = "24.11"; + + home.packages = with pkgs; [ + neofetch + zip + unzip + ripgrep + fzf + fd + sd + bat + tldr + fortune + just + mmv-go + zoxide + ]; + + imports = [ + ../modules/ssh + ../modules/git + ../modules/zoxide + ../modules/fish + ../modules/wezterm + ../modules/nvim + ]; + + programs.home-manager.enable = true; diff --git a/hosts/dnsc-machine/default.nix b/hosts/dnsc-machine/default.nix new file mode 100644 index 0000000..ede8621 --- /dev/null +++ b/hosts/dnsc-machine/default.nix @@ -0,0 +1,109 @@ +# Edit this configuration file to define what should be installed on +# your system. Help is available in the configuration.nix(5) man page +# and in the NixOS manual (accessible by running ‘nixos-help’). + +{ config, pkgs, ... }: + +{ + imports = + [ # Include the results of the hardware scan. + ./hardware-configuration.nix + inputs.home-manager.nixosModules.home-manager + ]; + + # Bootloader. + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + # Networking + networking.hostName = "dnsc-machine"; # Define your hostname. + networking.networkmanager.enable = true; + + # General settings + time.timeZone = "Europe/Berlin"; + i18n.defaultLocale = "en_US.UTF-8"; + i18n.extraLocaleSettings = { + LC_ADDRESS = "de_DE.UTF-8"; + LC_IDENTIFICATION = "de_DE.UTF-8"; + LC_MEASUREMENT = "de_DE.UTF-8"; + LC_MONETARY = "de_DE.UTF-8"; + LC_NAME = "de_DE.UTF-8"; + LC_NUMERIC = "de_DE.UTF-8"; + LC_PAPER = "de_DE.UTF-8"; + LC_TELEPHONE = "de_DE.UTF-8"; + LC_TIME = "de_DE.UTF-8"; + }; + security.sudo.enable = true; + + services.xserver.xkb = { + layout = "eu"; + }; + + # Define a user account. Don't forget to set a password with ‘passwd’. + users.users.dennis = { + isNormalUser = true; + description = "dennis"; + extraGroups = [ "networkmanager" "wheel" ]; + packages = with pkgs; []; + }; + + # Nix settings + nix.gc = { + automatic = true; + dates = "weekly"; + options = "--delete-older-than 1w"; + }; + nix.settings = { + auto-optimise-store = true; + experimental-features = [ + "nix-command" + "flakes" + ]; + }; + nixpkgs.config.allowUnfree = true; + + # Home Manager + home-manager = { + extraSpecialArgs = { inherit inputs outputs; }; + backupFileExtension = "backup"; + users = { + dennis = import ../../home/linux.nix; + }; + }; + + # System Packages + environment.systemPackages = with pkgs; [ + wget + git + neovim + btop + ]; + + # Some programs need SUID wrappers, can be configured further or are + # started in user sessions. + programs.mtr.enable = true; + programs.gnupg.agent = { + enable = true; + enableSSHSupport = true; + }; + + # Services + + # SSH + services.openssh.enable = true; + + # Tailscale + services.tailscale.enable = true; + + # Environment variables + environment.variables.EDITOR = "nvim"; + + # This value determines the NixOS release from which the default + # settings for stateful data, like file locations and database versions + # on your system were taken. It‘s perfectly fine and recommended to leave + # this value at the release version of the first install of this system. + # Before changing this value read the documentation for this option + # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). + system.stateVersion = "25.05"; # Did you read the comment? + +} diff --git a/hosts/dnsc-machine/hardware-configuration.nix b/hosts/dnsc-machine/hardware-configuration.nix new file mode 100644 index 0000000..73a5bc9 --- /dev/null +++ b/hosts/dnsc-machine/hardware-configuration.nix @@ -0,0 +1,41 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = + [ (modulesPath + "/installer/scan/not-detected.nix") + ]; + + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/30277f94-8b7b-4e91-8438-6815170edfdd"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/4DC9-7AB7"; + fsType = "vfat"; + options = [ "fmask=0077" "dmask=0077" ]; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/9b7564e7-2deb-4432-a4fc-d18d21ef2d11"; } + ]; + + # Enables DHCP on each ethernet and wireless interface. In case of scripted networking + # (the default) this is the recommended approach. When using systemd-networkd it's + # still possible to use this option, but it's recommended to use it in conjunction + # with explicit per-interface declarations with `networking.interfaces..useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.enp42s0.useDHCP = lib.mkDefault true; + # networking.interfaces.enp45s0f3u3u4.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +}