boreal: initial setup
This commit is contained in:
parent
fe5df275d6
commit
d8e794f865
9 changed files with 139 additions and 0 deletions
13
base/gui-programs.nix
Normal file
13
base/gui-programs.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
firefox
|
||||
flameshot
|
||||
alacritty
|
||||
slack
|
||||
discord
|
||||
];
|
||||
|
||||
networking.networkmanager.enable = true;
|
||||
programs.nm-applet.enable = true;
|
||||
}
|
||||
|
|
@ -1,5 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
nix = {
|
||||
package = pkgs.nixUnstable;
|
||||
extraOptions = ''
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
# shell usage
|
||||
bat
|
||||
fd
|
||||
ripgrep
|
||||
wget
|
||||
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ in
|
|||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
"media"
|
||||
"networkmanager"
|
||||
"wheel" # Enable ‘sudo’ for the user.
|
||||
];
|
||||
shell = pkgs.fish;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue