From 17d483c8c8a96fad2200acaf802b7ef0b0eb494d Mon Sep 17 00:00:00 2001 From: Linnnus Date: Wed, 6 Sep 2023 08:18:38 +0200 Subject: =?UTF-8?q?hej=20g=C3=B8r=20lige=20mere?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hosts/muhammed/configuration.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'hosts/muhammed') diff --git a/hosts/muhammed/configuration.nix b/hosts/muhammed/configuration.nix index fb6a975..0e41669 100644 --- a/hosts/muhammed/configuration.nix +++ b/hosts/muhammed/configuration.nix @@ -1,27 +1,27 @@ # This file contains the configuration for my Macbook Pro. -{ pkgs, inputs, lib, ... }: +{ pkgs, flakeInputs, lib, ... }: { # Specify the location of this configuration file. Very meta. - environment.darwinConfig = inputs.self + "/hosts/muhammed/configuration.nix"; + environment.darwinConfig = flakeInputs.self + "/hosts/muhammed/configuration.nix"; # Use the Nix daemon. services.nix-daemon.enable = true; - # Set up main account. + # Set up main account with ZSH. users.users.linus = { description = "Personal user account"; home = "/Users/linus"; shell = pkgs.zsh; }; - my.use-cases.development.enable = true; - my.use-cases.sysadmin.enable = true; # Following are recommended when changing the default shell. # https://nixos.wiki/wiki/Command_Shell#Changing_default_shelltrue; programs.zsh.enable = true; # TODO: move to common module environment.shells = [ pkgs.zsh ]; + my.use-cases = [ "gui" "development" ]; + # Should match containing folder. networking.hostName = "muhammed"; -- cgit v1.2.3