aboutsummaryrefslogtreecommitdiff
path: root/nixos/home.nix
blob: 458b2708a49d3fc9f1ba6c36aa1ee726fc76b9fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ config, pkgs, ... }:
{
  users.users.aargh = {
    isNormalUser = true;
    description = "Aargh";
    extraGroups = [ "networkmanager" "wheel" "kvm" "adbusers" ];
    packages = with pkgs; [];
    shell = pkgs.fish;
  };
  programs.adb.enable = true;
  programs.fish.enable = true;
  home-manager.users.aargh = { pkgs, ... }: {
    programs.firefox.enable = true;
    home.stateVersion = "25.05";
  };
  home-manager.backupFileExtension = "hm-backup";
  nix.gc = {
    automatic = true;
    dates = "weekly";
    options = "--delete-older-than 10d";
  };


  environment.systemPackages = with pkgs; [
    fastfetch
    vim
    wget
    git
    nmap
    dust
    gnome-tweaks
    home-manager
  ];
}