nixos/home/default.nix

113 lines
1.6 KiB
Nix
Raw Normal View History

2021-07-01 05:05:55 +01:00
{ config, pkgs, ... }:
let
albert_autostart = (pkgs.makeAutostartItem {
<<<<<<< HEAD
2021-07-01 05:05:55 +01:00
name = "albert";
package = pkgs.albert;
});
guake_autostart = (pkgs.makeAutostartItem {
name = "guake";
package = pkgs.guake;
});
in {
imports = [
./zsh.nix
./code.nix
./git.nix
];
nixpkgs.config.allowUnfree = true;
home = {
stateVersion = "21.05";
sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
};
packages = with pkgs; [
# essentials
albert
guake
# browsers
firefox
brave
=======
2021-07-01 03:38:35 +01:00
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
2021-07-01 05:05:55 +01:00
chromium
# reversing
rizin
<<<<<<< HEAD
2021-07-01 05:05:55 +01:00
# networking
nmap
# development
clang
# social
=======
2021-07-01 03:38:35 +01:00
nmap
>>>>>>> 010141fe0b7b6d866f46dd9721653d8ee0521a6b
2021-07-01 05:05:55 +01:00
slack
signal-desktop
teams
discord
element-desktop
<<<<<<< HEAD
2021-07-01 05:05:55 +01:00
# music
spotify
# misc
bind
# system
gparted
=======
2021-07-01 03:38:35 +01:00
spotify
bind
gparted
sshfs
>>>>>>> 010141fe0b7b6d866f46dd9721653d8ee0521a6b
2021-07-01 05:05:55 +01:00
# autostart
albert_autostart
guake_autostart
];
<<<<<<< HEAD
2021-07-01 05:05:55 +01:00
};
=======
2021-07-01 03:38:35 +01:00
home.sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
};
>>>>>>> 010141fe0b7b6d866f46dd9721653d8ee0521a6b
2021-07-01 05:05:55 +01:00
}