Compare commits

..

No commits in common. "9debddac68c88bb50c690e7bf6f0a872b847e656" and "9ab61ca7dec80ba8fc3c995d5a7c964652e5d93a" have entirely different histories.

3 changed files with 7 additions and 21 deletions

View File

@ -107,6 +107,7 @@
# Home desktop
sisko = normalSys "sisko" {
home-manager-users."amalieem" = import ./home/amalieem;
};
};

View File

@ -33,6 +33,11 @@
remotePlay.openFirewall = true;
};
users.users."amalieem" = {
isNormalUser = true;
home = "/home/amalieem";
};
nixpkgs.config = {
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"copilot.vim"

View File

@ -1,4 +1,4 @@
{ pkgs, lib, config, ... }:
{ pkgs, lib, ... }:
{
imports = [
@ -10,7 +10,6 @@
# GUI Applications
chromium
discord
easyeffects
element-desktop
emacs-gtk
papers
@ -20,7 +19,6 @@
mpv
mumble
pavucontrol
picard
prismlauncher
swayimg
spotify
@ -76,7 +74,6 @@
settings.window.opacity = 0.92;
};
firefox.enable = true;
ncmpcpp.enable = true;
neovim.plugins = with pkgs.vimPlugins; [ copilot-vim ];
rbw = {
enable = true;
@ -97,23 +94,6 @@
};
};
services = {
mpd = let
home = config.home.homeDirectory;
in {
enable = true;
musicDirectory = "${home}/mnt/music";
dataDir = "${home}/Music/mpd/data";
playlistDirectory = "${home}/Music/mpd-playlists";
extraConfig = ''
audio_output {
type "pipewire"
name "PipewireOut1"
}
'';
};
};
home.pointerCursor = {
name = "Bibata-Modern-Ice";
package = pkgs.bibata-cursors;