diff --git a/machines/moderatio/configuration.nix b/machines/moderatio/configuration.nix index b5502aae..2f5e03bd 100644 --- a/machines/moderatio/configuration.nix +++ b/machines/moderatio/configuration.nix @@ -7,22 +7,18 @@ { imports = [ # Include the results of the hardware scan. - ./hardware-configuration.nix ./zfs.nix + ./hardware-configuration.nix + ./zfs.nix ]; # Define on which hard drive you want to install Grub. - # networking.hostName = "nixos"; # Define your hostname. - # Pick only one of the below networking options. + networking.hostName = "moderatio"; # Define your hostname. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. - # networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. + networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. # Set your time zone. - # time.timeZone = "Europe/Amsterdam"; - - # Configure network proxy if necessary - # networking.proxy.default = "http://user:password@proxy:port/"; - # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; + time.timeZone = "Europe/Berlin"; # Select internationalisation properties. # i18n.defaultLocale = "en_US.UTF-8"; @@ -46,27 +42,27 @@ # services.printing.enable = true; # Enable sound. - # sound.enable = true; - # hardware.pulseaudio.enable = true; + sound.enable = true; + hardware.pulseaudio.enable = true; - # Enable touchpad support (enabled default in most desktopManager). - # Define a user account. Don't forget to set a password with ‘passwd’. - # users.users.jane = { - # isNormalUser = true; - # extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. - # packages = with pkgs; [ - # firefox - # thunderbird - # ]; - # }; + #Define a user account. Don't forget to set a password with ‘passwd’. + users.users.malobeo = { + isNormalUser = true; + extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. + packages = with pkgs; [ + firefox + thunderbird + ]; + }; # List packages installed in system profile. To search, run: # $ nix search wget - # environment.systemPackages = with pkgs; [ - # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. - # wget - # ]; + environment.systemPackages = with pkgs; [ + vim + wget + git + ]; # Some programs need SUID wrappers, can be configured further or are # started in user sessions.