|
|
@ -1,5 +1,16 @@ |
|
|
|
{ config, pkgs, ...}: |
|
|
|
{ config, pkgs, ... }: |
|
|
|
let |
|
|
|
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz"; |
|
|
|
in |
|
|
|
{ |
|
|
|
imports = [ |
|
|
|
(import "${home-manager}/nixos") |
|
|
|
]; |
|
|
|
|
|
|
|
services.xserver.displayManager.gdm.enable = true; |
|
|
|
services.xserver.desktopManager.gnome.enable = true; |
|
|
|
|
|
|
|
home-manager.users.junikim = { |
|
|
|
# Home Manager needs a bit of information about you and the |
|
|
|
# paths it should manage. |
|
|
|
home.username = "junikim"; |
|
|
@ -18,7 +29,6 @@ |
|
|
|
# Let Home Manager install and manage itself. |
|
|
|
programs.home-manager.enable = true; |
|
|
|
|
|
|
|
services.xserver.desktopManager.gnome.enable = true; |
|
|
|
|
|
|
|
programs.starship.enable = true; |
|
|
|
|
|
|
@ -63,4 +73,5 @@ |
|
|
|
".tmux.conf".source = ../dotfiles/tmux.conf; |
|
|
|
".zshrc".source = ../dotfiles/zshrc; |
|
|
|
}; |
|
|
|
}; |
|
|
|
} |