This commit is contained in:
Giulio De Pasquale 2021-07-01 06:38:08 +02:00
parent 0a29ba5480
commit f3c052d597
2 changed files with 16 additions and 67 deletions

View File

@ -2,7 +2,6 @@
let let
albert_autostart = (pkgs.makeAutostartItem { albert_autostart = (pkgs.makeAutostartItem {
<<<<<<< HEAD
name = "albert"; name = "albert";
package = pkgs.albert; package = pkgs.albert;
}); });
@ -10,23 +9,25 @@ let
name = "guake"; name = "guake";
package = pkgs.guake; package = pkgs.guake;
}); });
in { in
imports = [ {
./zsh.nix imports = [
./code.nix ./zsh.nix
./git.nix ./code.nix
]; ./git.nix
./gnome.nix
];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
home = { home = {
stateVersion = "21.05"; stateVersion = "21.05";
sessionVariables = { sessionVariables = {
EDITOR = "nvim"; EDITOR = "nvim";
VISUAL = "nvim"; VISUAL = "nvim";
}; };
packages = with pkgs; [ packages = with pkgs; [
# essentials # essentials
albert albert
guake guake
@ -34,52 +35,19 @@ in {
# browsers # browsers
firefox firefox
brave brave
=======
name = "albert";
package = pkgs.albert;
});
guake_autostart = (pkgs.makeAutostartItem {
name = "guake";
package = pkgs.guake;
});
in {
nixpkgs.config = { allowUnfree = true; };
imports = [ ./git.nix ./zsh.nix ./gnome.nix ./code.nix ];
home.stateVersion = "21.05";
home.packages = with pkgs; [
albert
guake
firefox
>>>>>>> 010141fe0b7b6d866f46dd9721653d8ee0521a6b
chromium chromium
# reversing # reversing
rizin rizin
<<<<<<< HEAD
# networking
nmap
# development
clang
# social
=======
nmap nmap
>>>>>>> 010141fe0b7b6d866f46dd9721653d8ee0521a6b
slack slack
signal-desktop signal-desktop
teams teams
discord discord
element-desktop element-desktop
<<<<<<< HEAD
# music # music
spotify spotify
@ -88,25 +56,11 @@ in {
# system # system
gparted gparted
=======
spotify
bind
gparted
sshfs sshfs
>>>>>>> 010141fe0b7b6d866f46dd9721653d8ee0521a6b
# autostart # autostart
albert_autostart albert_autostart
guake_autostart guake_autostart
]; ];
<<<<<<< HEAD
}; };
=======
home.sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
};
>>>>>>> 010141fe0b7b6d866f46dd9721653d8ee0521a6b
} }

View File

@ -6,10 +6,6 @@
users.users.giulio = { users.users.giulio = {
description = "Giulio De Pasquale"; description = "Giulio De Pasquale";
isNormalUser = true; isNormalUser = true;
<<<<<<< HEAD
shell = pkgs.zsh;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
=======
shell = pkgs.zsh; shell = pkgs.zsh;
extraGroups = [ "wheel" "docker" "networkmanager" ]; extraGroups = [ "wheel" "docker" "networkmanager" ];
}; };
@ -17,7 +13,6 @@
programs.zsh = { programs.zsh = {
enableBashCompletion = true; enableBashCompletion = true;
enableCompletion = true; enableCompletion = true;
>>>>>>> 010141fe0b7b6d866f46dd9721653d8ee0521a6b
}; };
home-manager.users.giulio = { home-manager.users.giulio = {