dotfiles/nixos/msi/home.nix
2024-06-09 16:37:54 +02:00

25 lines
479 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ config, lib, pkgs, ... }:
let
unstable = import <unstable> {};
packages = (with pkgs; [
anki
discord
firefox-devedition
krita
qbittorrent
spotify
vlc
]) ++ (with unstable; [
neovide
]);
in
{
# Define a user account. Don't forget to set a password with passwd.
users.users.kamov = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
packages = packages;
shell = pkgs.fish;
};
}