diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-12-26 22:44:34 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-12-26 22:44:34 +0100 |
commit | b6c3978d49c2b6d66aad538447d74897fec5882a (patch) | |
tree | fcbcd82c0c0a97ec4436c29a5eeafdd6b6b6094a /home.nix | |
parent | e82083214514df714bc5a5d1f3a30e9914b3561a (diff) | |
download | dots-multi-machine.tar.gz dots-multi-machine.zip |
Drop darwin setup multi-machine
bye apple
Diffstat (limited to 'home.nix')
-rw-r--r-- | home.nix | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/home.nix b/home.nix index 08bf15d..8eafac1 100644 --- a/home.nix +++ b/home.nix @@ -12,20 +12,12 @@ let # }; common_packages = import ./platforms/common-packages.nix pkgs; - isDarwin = builtins.currentSystem == "x86_64-darwin"; - platformSetup = - if isDarwin then [ - ./platforms/darwin - ] else [ + platformSetup = [ # ./platforms/linux # ./programs/rclone.nix ]; in { - # Errors on linux - manual.manpages.enable = if isDarwin then true else false; - dconf.enable = if isDarwin then true else false; - programs.obs-studio = { enable = true; plugins = with pkgs; [ obs-wlrobs obs-v4l2sink ]; @@ -34,8 +26,7 @@ in # Home Manager needs a bit of information about you and the # paths it should manage. home.username = "pn"; - home.homeDirectory = - if isDarwin then "/Users/pn" else "/home/pn"; + home.homeDirectory = "/home/pn"; imports = [ # Platform specific config |