Compare commits

...

2 Commits

Author SHA1 Message Date
Giulio De Pasquale
71d84d7ed6 beautify + root has zsh and code 2021-07-01 06:01:36 +01:00
Giulio De Pasquale
2cfc81ac83 added unfree, removed intellij 2021-07-01 06:01:08 +01:00
2 changed files with 9 additions and 5 deletions

View File

@ -1,10 +1,10 @@
{ config, pkgs, lib, home, ... }: { config, pkgs, lib, home, ... }:
{ {
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [ home.packages = with pkgs; [
nixfmt nixfmt
jetbrains.idea-ultimate
jetbrains.jdk
vscode vscode
]; ];

View File

@ -6,13 +6,17 @@
users.users.giulio = { users.users.giulio = {
description = "Giulio De Pasquale"; description = "Giulio De Pasquale";
isNormalUser = true; isNormalUser = true;
shell = pkgs.zsh; shell = pkgs.zsh;
extraGroups = [ "wheel" "docker" "networkmanager" ]; extraGroups = [ "wheel" "docker" "networkmanager" ];
}; };
programs.zsh = { programs.zsh = {
enableBashCompletion = true; enableBashCompletion = true;
enableCompletion = true; enableCompletion = true;
};
home-manager.users.root = {
imports = [ ./home/zsh.nix ./home/code.nix ];
}; };
home-manager.users.giulio = { home-manager.users.giulio = {