aboutsummaryrefslogtreecommitdiff
path: root/home.nix
blob: 85c47d4c47de075b3dfe9d1f01f20164c1ec5036 (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
{ config, pkgs, ... }:
let unstable = import <nixos-unstable> { config.allowUnfree = true; };
in {
  users.users.aargh = {
    isNormalUser = true;
    description = "Aargh";
    extraGroups = [ "networkmanager" "wheel" ];
    packages = with pkgs; [];
    shell = pkgs.fish;
  };
  programs.fish.enable = true;
  home-manager.users.aargh = { pkgs, ... }: {
    programs.firefox.enable = true;
    home.stateVersion = "25.05";
  };
  home-manager.backupFileExtension = "hm-backup";

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