why isnt this working argh

This commit is contained in:
Julian Sutter 2023-01-23 04:42:10 +00:00
parent efb0cb00f3
commit 601780bd56
6 changed files with 111 additions and 74 deletions

View file

@ -2,6 +2,9 @@
{ config, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
users.users.jsutter = {
isNormalUser = true;
description = "Julian Sutter";
@ -41,7 +44,7 @@
boot.kernelPackages = pkgs.linuxPackages_latest;
# Flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
networking.networkmanager.enable = true;
@ -92,9 +95,6 @@
programs.java.enable = true;
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# System packages
environment.systemPackages = with pkgs; [
git
@ -126,10 +126,10 @@ services.pcscd.enable = true;
enable = true;
pinentryFlavor = "gnome3";
enableSSHSupport = true;
};
};
services.openssh.enable = true;
system.stateVersion = "23.05"; # Did you read the comment?
system.stateVersion = "23.05";
}